Short Jump if first operand is Above second operand (as set by CMP instruction). Unsigned.Algorithm: if (CF = 0) and (ZF = 0) then jump
Short Jump if first operand is Above second operand (as set by CMP instruction). Unsigned.
Algorithm: if (CF = 0) and (ZF = 0) then jump
JA label
MOV AL, 250 CMP AL, 5 JA label1 ;print some message label1: ;print someother page