Assuming you were given only integers, and just told that one of the integers needs to be treated like a decimal using a scale factor... then you can do this by going using a scale factor that is twice as large as you need. So instead of 100, you use 200. This will cause the last bit of the result to be 1 or 0 depending on whether or not you will round up.
So in c style it looks like this
result = (195 * 85) / (100 / 2);
add = result & 1;
result = result / 2 + add;
If you weren't supposed to round up (i.e. round down) then the 'add bit' will be 0. Otherwise the 'add bit' will be 1 if you're supposed to round up.
I think that should give you the pseudocode you need to translate this into assembly properly.