JP (IX)

Operation

PC <- IX

Mnemonic

JP

Operands

(IX)

b7b6b5b4b3b2b1b0
1 1 0 1 1 1 0 1$DD
1 1 1 0 1 0 0 1$E9

Description

The Program Counter (PC) is loaded with the contents of the IX register pair. The next instruction is fetched from the location designated by the new contents of the PC.

Condition Bits Affected

None

Example

If the Program Counter contains $1000 and the IX register pair contains $4800, then upon the execution of

	JP	(IX)

the Program Counter contains $4800.