LD (DE),A

Operation

(DE) <- A

Mnemonic

LD

Operands

(DE),A

b7b6b5b4b3b2b1b0
0 0 0 1 0 0 1 0$12

Description

The contents of the Accumulator are loaded to the memory location specified by the contents of the DE register pair.

Condition Bits Affected

None

Example

If register pair DE contains $1128 and the Accumulator contains byte $A0, then the execution of

	LD	(DE),A

results in $A0 being stored in memory location $1128.