
PROGRAMMING CONCEPTS–II 3-19
7 JE Jump if Equal ZF = 1
8 JNA Jump if Not Above CF = 1 or ZF = 1
9 JNAE Jump if Not Above or Equal CF = 1
10 JNB Jump if Not Below CF = 0
11 JNBE Jump if Not Below nor Equal CF = 0 and ZF = 0
12 JNC Jump if No Carry CF = 0
13 JNE Jump if Not Equal ZF = 0
14 JNP Jump if No Parity PF = 0
15 JNZ Jump if Not Zero ZF = 0
16 JP Jump if Parity PF = 1
17 JPE Jump if Parity Even PF = 1
18 JPO Jump if Parity Odd PF = 0
19 JZ Jump if Zero ZF = 1
being the opcode, the second and third the new values of IP, and the fourth and fifth the
new values of CS. To specify that a jump is to a different code segment, a far pointer can
be used ...