Table of Contents

Advertisement

S3C84I8/F84I8/C84I9/F84I9
JP
— Jump
cc,dst (Conditional)
JP
dst
JP
If cc is true, PC ← dst
Operation:
The conditional JUMP instruction transfers program control to the destination address if the
condition specified by the condition code (cc) is true, otherwise, the instruction following the JP
instruction is executed. The unconditional JP simply replaces the contents of the PC with the
contents of the specified register pair. Control then passes to the statement addressed by the PC.
No flags are affected.
Flags:
(1)
Format:
cc | opc
opc
NOTES:
1.
2.
Given: The carry flag (C) = "1", register 00 = 01H, and register 01 = 20H:Secs
Examples:
JP C,LABEL_W
JP @00H
The first example shows a conditional JP. Assuming that the carry flag is set to "1", the statement
"JP C,LABEL_W" replaces the contents of the PC with the value 1000H and transfers control to
that location. Had the carry flag not been set, control would then have passed to the statement
immediately following the JP instruction.
The second example shows an unconditional JP. The statement "JP @00" replaces the contents
of the PC with the contents of the register pair 00H and 01H, leaving the value 0120H.
(Unconditional)
(2)
dst
dst
The 3-byte format is used for a conditional jump and the 2-byte format for an unconditional jump.
In the first byte of the 3-byte instruction format (conditional jump), the condition code and the
OPCODE are both four bits.
Bytes
3
2
LABEL_W = 1000H, PC = 1000H
PC = 0120H
INSTRUCTION SET
Cycles
Opcode
(Hex)
8
ccD
cc = 0 to F
8
30
Addr Mode
dst
DA
IRR
6-47

Advertisement

Table of Contents
loading

This manual is also suitable for:

S3c84i9S3f84i8S3f84i9

Table of Contents