I have the following code:
or edx,edx (0 Or 0 would equal 0)
jz InvalidDivisor
If i change the code to this:
AND edx,edx (0 and 0 would equal 0)
jz InvalidDivisor
Wouldnt both ways work for checking to see if the product is 0?