| 
 |  | 
                               Jump if Not Sign                               
  
    | 
       86/88  | 
    
       Y  | 
    
       186  | 
    
       Y  | 
    
       286  | 
    
       Y  | 
    
       386  | 
    
       Y  | 
    
       486  | 
    
       Y  | 
    
       JNS short_label  | 
   
  
    | 
       Ovfl  | 
    
       N  | 
    
       Dir  | 
    
       N  | 
    
       Int  | 
    
       N  | 
    
       Trap  | 
    
       N  | 
    
       Sign  | 
    
       N  | 
    
       Zero  | 
    
       N  | 
    
       Aux  | 
    
       N  | 
    
       Prty  | 
    
       N  | 
    
       Carry  | 
    
       N  | 
   
     JNS transfers control to short-label if the Sign Flag is clear. The
    target of the jump must be within -128 to +127 bytes of the next
    instruction.
       Note:          Use JS, Jump if Sign, to jump if the sign flag is
                      set.
------------------------------------ Timing ----------------------------------
OpCode          Instruction             	386     286     86
79 cb           JNS rel8                        7+m,3   7,3     16,4
0F 89 cw/cd     JNS rel16/32                    7+m,3
------------------------------------ Logic -----------------------------------
        Jump if (SF = 0)
See Also JS |