LD A,(BC)

Operation

A <- (BC)

Mnemonic

LD

Operands

A,(BC)

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

Description

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

Condition Bits Affected

None

Example

If the BC register pair contains the number $4747, and memory address $4747 contains byte $12, then the instruction

	LD	A,(BC)

results in byte $12 in register A.