(DMC8) Jump Instructions

Mnemonic

Symbolic
Operation

Flags
S    Z    H   P/V  N    C

Opcode
76 543 210

Hex

Bytes

M
Cycles

Clock
Cycles

Comments

JP nn

PC ¬ nn

•      •     •     •     •     •

11 000 011
¬    n     ®
¬    n     ®

C3

3

3

10

 

JP cc, nn

if cc is true,
PC ¬ nn

•      •     •     •     •     •

11  cc  010
¬    n     ®
¬    n     ®

 

3

3

10

cc     Condition
000   NZ non zero
001   Z  zero
010   NC non carry
011   C carry
100   PO parity odd
101   PE parity even
110   P sign positive
111   M sign negative

JP ( HL )

PC ¬ HL

•      •     •     •     •     •

11 101 001

E9

1

1

4

 

JP ( IX )

PC ¬ IX

•      •     •     •     •     •

11 011 101
11 101 001

DD
E9

2

2

8

JP ( IY )

PC ¬ IY

•      •     •     •     •     •

11 111 101
11 101 001

FD
E9

2

2

8

Flag Notation:

• = flag is not affected.