I am beginner in ASM, currently i am using FASM and with my code :
include 'win32ax.inc'
.code
start:
XOR EDX,EDX ; set to 0
MOV EBX,22
;@DivLoop:
MOV EAX,7
DIV EBX
For Debug i am using Ollydbg and like you can see the register is not modified.
I would like to understand why is not modified. Thanks You very much