LD (nn),IX

Operation

(nn+1) <- IXh, (nn) <- IXl

Mnemonic

LD

Operands

(nn),IX

b7b6b5b4b3b2b1b0
1 1 0 1 1 1 0 1$DD
0 0 1 0 0 0 1 0$22
n
n

Description

The low-order byte in Index Register IX is loaded to memory address (nn); the upper order byte is loaded to the next highest address (nn + 1). The first n operand after the op code is the low-order byte of nn.

Condition Bits Affected

None

Example

If Index Register IX contains $5A30, then upon execution of

	LD	($4392),IX

memory location $4392 contains number $30 and location $4393 contains $5A.