|
CLRB bit Clear bit Words: 1 Cycles: 1 Affects: none
Operation: Bit is cleared to 0.
Coding: BCF bit
Note: The TechTools assemblers define a bit as port.bitposition, as in the following examples:
RA.3 = bit 3 of port A PortB.0 = bit 0 of port B
CLC Clear carry Words: 1 Cycles: 1 Affects: C
Operation: C is cleared to 0.
Coding: BCF 3,0
CLZ Clear zero Words: 1 Cycles: 1 Affects: Z
Operation: Z is cleared to 0.
Coding: BCF 3,2 |


