You are here : assembly8086JA

JA - 8086

Short Jump if first operand is Above second operand (as set by CMP instruction). Unsigned.

Algorithm: if (CF = 0) and (ZF = 0) then jump


Syntax

JA label


Example

MOV AL, 250
CMP AL, 5
JA label1
;print some message
label1:
;print someother page


Output / Return Value


Limitations


Alternatives / See Also


Reference