This repository contains assembly and binary programs used to program EPROM 2732 for driving LED display systems.
The project focuses on using low-level memory mapping techniques to generate output patterns for:
- 7-segment LEDs
- LED matrix displays
All display behaviors are pre-defined and stored directly in EPROM.
- EPROM memory mapping
- Address decoding
- Binary pattern encoding for LEDs
- Assembly-level control of hardware
The EPROM 2732 stores predefined data patterns. Each memory address corresponds to a specific LED output state.
- Address lines → Select pattern
- Data lines → Drive LED outputs
- No microcontroller required
├── 16-led-7seg # Control 16 7-segment LEDs
├── 2-led-matrix # Control 2 8x8 LED matrix
├── 4-led-matrix # Control 4 8x8 LED matrix
└── 4-led # Control 4 7-segment LEDs
Go to each directory for more details