From my understanding jmp
does an unconditional jump, whereas ja
jumps if the value is unsigned. Am I getting this right?
An example would be greatly appreciated.
You're correct that jmp
does an unconditional jump.
Your description of ja
is incorrect, though. It does a conditional jump, based on the result of the most recent cmp
operation. It jumps if the first operand was greater than the second operand, using unsigned comparison rather than signed comparison. jg
would use signed comparison.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With