I have a problem. I want to convert the code below into MASM32v10:
mov eax,0
.while eax < 10
add eax,1
.endw
Could you help me to repair it's code?
Thank you.
Fritz Gamaliel
Fritz,
It disassembles to exactly this code with DumpPE.
mov eax, 0
jmp lbl1
lbl0:
add eax, 1
lbl1:
cmp eax, 0Ah
jb lbl0