Instruction Set
C500 Family
Semiconductor Group
4-42
1998-04-01
JNZ
rel
Function:
Jump if accumulator is not zero
Description:
If any bit of the accumulator is a one, branch to the indicated address; otherwise
proceed with the next instruction. The branch destination is computed by adding the
signed relative-displacement in the second instruction byte to the PC, after
incrementing the PC twice. The accumulator is not modified. No flags are affected.
Example:
The accumulator originally holds 00H. The instruction sequence
JNZ
LABEL1
INC
A
JNZ
LABEL2
will set the accumulator to 01H and continue at label LABEL2.
Operation:
JNZ
(PC)
¬
(PC) + 2
if (A)
¹
0
then (PC)
¬
(PC) + rel.
Bytes:
2
Cycles:
2
Encoding:
0 1 1 1
0 0 0 0
rel. address