ADD A,(HL)

Add accumulator with indirectly addressed memory location (HL).
 
Function: A <- A + (HL)
 
Format:
1000 0110
 
86
 
Description: The contents of the accumulator are added to the contents of the memory location addressed by the HL register pair. The result is stored in the accumulator.
 
Data Flow:
 
Timing: 2 M cycles; 7 T states: 3.5 usec @ 2 MHz
 
Addressing Mode: indirect
 
Flags:
 
Example:
ADD  A,(HL)

OBJECT CODE
Before:
 
After: