<<< CMP instruction | Index | Conditional Jumps >>> |
Format:
jmp label
Semantics:
Execution is transferred to the instruction identified by the label.
Infinite loop example:
mov eax, 1 inc_again: inc eax jmp inc_again mov ebx, eax ; this will never execute...
<<< CMP instruction | Index | Conditional Jumps >>> |