SX Embedded Controller Instruction

JNB bit,addr

Description: Jump TO address if not bit
Operation: ( fr & ( 1 << bit )) == 0 ? PC = addr
Flags affected: none
Registers affected: PC
Sources referenced: bit
Cycles: 2 *
Opcode:
Actually compiles to: sb bit; jmp addr
Microchip PIC syntax: BTFSS bit; GOTO addr
Notes: