8051 Instruction Set Manual

JNC

The JNC instruction transfers program control to the specified address if the carry flag is 0. Otherwise, execution continues with the next instruction. No flags are affected by this instruction.

See Also: JC

JNC offset
CACF0RS1RS0OV P
Bytes2
Cycles2
Encoding
01010000offset
Operation
JNC
PC = PC + 2
IF C = 0
  PC = PC + offset
Example
JNC LABEL