| |
Jump if Parity
86/88 |
Y |
186 |
Y |
286 |
Y |
386 |
Y |
486 |
Y |
JP short_label |
Ovfl |
N |
Dir |
N |
Int |
N |
Trap |
N |
Sign |
N |
Zero |
N |
Aux |
N |
Prty |
N |
Carry |
N |
JP transfers control to short-label if the Parity Flag is set. The
target of the jump must be within -128 to +127 bytes of the next
instruction.
Notes: JPE, Jump if Parity Even, is the same instruction as
JP.
Use JNP, Jump if No Parity, to jump if the Parity
Flag is clear.
------------------------------------ Timing ----------------------------------
OpCode Instruction 386 286 86
7A cb JP rel8 7+m,3 7,3 16,4
0F 8A cw/cd JP rel16/32 7+m,3
------------------------------------ Logic -----------------------------------
Jump if (PF = 1)
See Also JNP JPE JPO |