Interactive 8085 Microprocessor Simulator

Microprocessor Diagram

ALUControl UnitRegister ArrayAddress BusData BusControl Bus

Program Executor

Execution Step: 0

Current Instruction: N/A

Sample Programs

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

Data Flow Visualization

Memory Visualization

Memory Visualization

0000
0001
0002
0003
0004
0005
0006
0007
0008
0009
000A
000B
000C
000D
000E
000F

Green cell represents memory address 2000H used in the sample programs.

Quiz

Question 1

What is the primary function of the ALU?