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