MOVB bit1,bit2 | |
Description: | Move bit2 into bit1 |
Operation: | bit1 = bit2 |
Flags affected: | none |
Registers affected: | bit1 |
Sources referenced: | bit2 |
Cycles: | 4 |
Opcode: | |
Actually compiles to: | sb bit2; clrb bit1; snb bit2setb bit1 |
Microchip PIC syntax: | BTFSS bit2; BCF bit1; BTFSC bit2; BSF bit1 (doesn't work) |
Notes: |