PIC16C5X Instruction Set


BTFSC


Syntax : BTFSC f,b

Description : If bit 'b' in register 'f' is 0, then the next instruction is skipped.
              If bit 'b' is '0', the next instruction, fetched during the current 
              instruction execution, is discarded and a NOP is executed  instead, 
              making this a two cycles instruction. 
								  

Function : skip if f(b) = 0

Hex code : 6bf

Bit field:
0110 bbbf ffff

Words : 1

Cycles : 1

Affected flags :None

See also :   BCF,   BSF,   BTFSS
Previous    Upper level    Next