PIC16CXX Instruction Set


BTFSS


Syntax : BTFSS f,b

Description : If bit 'b' in register 'f' is 1, then the next instruction is skipped.
              If bit 'b' is '1', 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) = 1

Hex code :1bff

Bit field:
01 11bb bfff ffff

Words : 1

Cycles : 1

Affected flags :None

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