CHAPTER 6 DETAILED RULES FOR EXECUTION INSTRUCTIONS
6.13 BNZ (Branch relative if Z = 0)/BNE (Branch if Not Equal)
Execute the next instruction if the
■BNZ (Branch relative if Z = 0)/BNE (Branch if Not Equal)
Operation
(Z) = 1: (PC) ← (PC) + 2 (Word addition)
(Z) = 0: (PC) ← (PC) + 2 + rel (Word addition)
Assembler format
BNZ rel/BNE rel
Condition code (CCR)
N | Z | V | C |
|
|
|
|
- | - | - | - |
|
|
|
|
+: Changed by executing instruction
N:Not changed
Z:Not changed
V:Not changed
C:Not changed
Number of execution cycles: 4 (at divergence)/ 2 (at
Byte count: 2
OP code: FC
72