I'm feeling loopy!
Tonight, Emu86 has grown up to where it can loop:
mov eax, 10
loop: cmp eax, ebx
je done
inc ebx
jne loop
done: mov ecx, 1
Yes, that jne could have been an unconditional jump... but I wanted to test jne!
mov eax, 10
loop: cmp eax, ebx
je done
inc ebx
jne loop
done: mov ecx, 1
Yes, that jne could have been an unconditional jump... but I wanted to test jne!
Comments
Post a Comment