Hello everyone.
I'm trying to do this in nasm under linux :
cmp eax,ebx
jng .loop
and also
test eax,ebx
jng .loop
and yet also
%if eax < ebx
jmp .loop
%endif
I want to loop while eax is lesser than ebx and non of the 3 methods work!
First 2 execute once and then hit for the exit code
the last one gives error:
error: `<': operands differ by a non-scalar
Can someone help me? I've been banging my head against the wall for some hours now!