<<< Unconditional Jumps | Index | Conditional Jumps, Cont >>> |
Format:
jcondition label
Semantics:
Execution is transferred to the instruction identified by label only if condition is met.
Testing for carriage return example:
; Assume that AL contains input character. cmp al, 0dh ; 0dh = ASCII carriage return je CR_received inc cl .. CR_received:
<<< Unconditional Jumps | Index | Conditional Jumps, Cont >>> |