Bit Clear F
Bit ‘b’ in register ‘f’ is cleared.
[the_ad id=”3059″]Syntax:
[ label ] BCF f,b
Operation:
0 → (f<b>)
Operands:
- 0 ≤ f ≤ 127
- 0 ≤ b ≤ 7
Status Affected: None
Example:
1 |
BCF REG,0 |
1 |
REG = 0xF1 |
1 |
REG = 0xF0 |
Example:
1 |
BCF REG,2 |
1 |
REG = b'11110100' |
1 |
W = b'11110000' |