PIC17CXX Instruction Set


RLCF


Syntax : RLCF f,d

Description : The contents of register 'f' are rotated left one bit through the Carry Flag. 
              If 'd' is 0 the result is placed into W register.
              If 'd' is 1 the result is placed back in register 'f'.
             

Function : f<n> → d<n+1>,   f<7> → C,   C → d<0>

Hex code : 1Aff

Bit field:
0001 101d ffff ffff

Words : 1

Cycles : 1

Affected flags : Carry

See also : RLNCF,   RRCF,   RRNCF
Previous    Upper level    Next