| 
 |  | 
                           Bit Test with Compliment                           
  
    | 
       86/88  | 
    
       N  | 
    
       186  | 
    
       N  | 
    
       286  | 
    
       N  | 
    
       386  | 
    
       Y  | 
    
       486  | 
    
       Y  | 
    
       BTC destination, source  | 
   
  
    | 
       Ovfl  | 
    
       N  | 
    
       Dir  | 
    
       N  | 
    
       Int  | 
    
       N  | 
    
       Trap  | 
    
       N  | 
    
       Sign  | 
    
       N  | 
    
       Zero  | 
    
       N  | 
    
       Aux  | 
    
       N  | 
    
       Prty  | 
    
       N  | 
    
       Carry  | 
    
       Y  | 
   
     The destination bit indexed by the source value is copied into the
    Carry Flag and then complimented (inverted).
------------------------------------ Timing ----------------------------------
OpCode          Instruction             386     286     86
0F BB           BTC r/m16, r16          6/13
0F BB           BTC r/m32, r32          6/13
0F BA/7 ib      BTC r/m16, imm8         6/8
0F BA/7 ib      BTC r/m32, imm8         6/8
------------------------------------ Logic -----------------------------------
        CF = bit (source) of destination
        bit (source) of destination = NOT bit (source) of destination
See Also BSF BSR BT BTR BTS SETxx Flags |