You are here : assembly8086JAE

JAE - 8086

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

Algorithm : if CF = 0 then jump


Syntax

JAE label


Example

MOV AL, 5
CMP AL, 5
JAE label1
PRINT 'AL is not above or equal to 5'
JMP exit


Output / Return Value


Limitations


Alternatives / See Also


Reference