I'm trying to do a simple division:
mov ebx, 10
mov eax, 1111111111 ;(10 times)
mov edx, 0
idiv bx
Supposedly I want to get the following results:
edx = 1
eax = 111111111 (9 times)
But the results I'm getting are:
edx = 7
eax = 1111098720
Does anyone know what the problem might be?
Thanks