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