LD A,(DE)

Operation

A <- (DE)

Mnemonic

LD

Operands

A,(DE)

b7b6b5b4b3b2b1b0
0 0 0 1 1 0 1 0$1A

Description

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

Condition Bits Affected

None

Example

If the DE register pair contains the number $30A2, and memory address $30A2 contains byte $22, then the instruction

	LD	A,(DE)

results in byte $22 in register A.