Instruction JE:
Saut si la condition est réalisée.
Saut court si le premier opérande est  égal au deuxième opérande (identique à l'instruction CMP). Signé et Non signé.

Algorithme :

Exemple :
		include 'emu8086.inc'
		#make_COM#
		ORG 100h
		MOV AL, 5
		CMP AL, 5
		JE  label1
		PRINT 'AL n'est pas égal à 5.'
		JMP exit
	label1:
		PRINT 'AL est égal à 5.'
	exit:
		RET 

C Z S O P A
inchangés

Liste des instructions x86.