LD (IX+d),n

Operation

(IX+d) <- n

Mnemonic

LD

Operands

(IX+d),n

b7b6b5b4b3b2b1b0
1 1 0 1 1 1 0 1$DD
0 0 1 1 0 1 1 0$36
d
n

Description

The n operand is loaded to the memory address specified by the sum of Index Register IX and the two’s complement displacement operand d.

Condition Bits Affected

None

Example

If Index Register IX contains the number $219A, then upon execution of

	LD	(IX+$5),$5A

byte 5Ah is contained in memory address 219Fh.