You are here : assembly8086JE

JE - 8086

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

Algorithm: if ZF = 1 then jump


Syntax

JE Label


Example

 include 'emu8086.inc'
 ORG 100h
 MOV AL, 5
 CMP AL, 5
 JE label1
 PRINT 'AL is not equal to 5.'
 JMP exit
label1:
 PRINT 'AL is equal to 5.'
exit:
 RET


Output / Return Value


Limitations


Alternatives / See Also


Reference