Execution Step: 0
Current Instruction: N/A
This program adds two numbers (5 and 3) and stores the result in memory.
MVI A, 5 ; Load 5 into accumulator
MVI B, 3 ; Load 3 into register B
ADD B ; Add B to accumulator
STA 2000H ; Store result in memory location 2000H
Green cell represents memory address 2000H used in the sample programs.
What is the primary function of the ALU?