How can divide a dword by an other?
thanks
Posted on 2000-12-13 12:05:00 by Morgatte
I ran into this problem as well. To do it all you have to do is clear edx
mov eax,dword
xor edx,edx
mov ecx,dword
div ecx
Posted on 2000-12-13 17:23:00 by Betrayed
Thanks Betrayed, I try.
Posted on 2000-12-14 06:44:00 by Morgatte