I'm working with masm and I've encountered a scenario I do not readily understand how to solve, for example:
X = (A)/(C*D)
If I multiple C*D first, my value is DX:AX and to my knowledge, I cannot use that as a divisor. If I do division separately as A/C and A/D, I run the risk of losing precision (from the reminders, etc.). What's the best way to implement this?
DX == 0andDX != 0. The latter case is easy as the quotient is 0. (Make appropriate adjustments if you need support for signed integers) – user786653 Nov 1 '11 at 17:39