LD (nn),A

Operation

(nn) <- A

Mnemonic

LD

Operands

(nn),A

b7b6b5b4b3b2b1b0
0 0 1 1 0 0 1 0$32
n
n

Description

The contents of the Accumulator are loaded to the memory address specified by the operand nn. The first n operand after the op code is the low-order byte of nn.

Condition Bits Affected

None

Example

If the Accumulator contains byte $D7, then executing

	LD	($3141),A

results in memory location $3141 containing $D7.