LD (HL),n

Operation

(HL) <- n

Mnemonic

LD

Operands

(HL),n

b7b6b5b4b3b2b1b0
0 0 1 1 0 1 1 0$36
n

Description

The n integer is loaded to the memory address specified by the contents of the HL register pair.

Condition Bits Affected

None

Example

If the HL register pair contains $4444, the instruction

	LD	(HL),$28

results in the memory location $4444 containing $28.