Project information
- Category: Hardware
- Client: Personal
- Project date: 2019
Project Objective
To gain an understanding of the basic functions on a Central Processing Unit.
Overview
The 8-bit breadboard computer is a Ben Eater inspired project to study basic functions of a CPU. This project will also serve to bridge the gap between using ICs (integrated circuits) on their own performing their own functions, to combining them together to accomplish a much bigger task. There are only 2 major constraints to the project. Constructing it on a breadboard, which is essential to allow easy modifications for fixing mistakes or hardware bugs. And slow clock, about 1-3hz to allow easier debugging of code.

Final Product
The computer took approximately a week to construct. The final product includes:
- Variable astable clock (1 - 300 hz) with the option for a button triggered monostable clock.
- 16 bytes of random access memory (RAM)
- 3kBs of read only memory (ROM)
- 4-bit program counter
- An arithmetic logic unit (ALU) that is capable of 8-bit addition and subtraction
- A 3 digit 7 segment output display with the ability to display in either signed or unsigned digits
- 11 CPU Instructions
- 8-Bit main bus
As stated earlier, the computer has a total of 11 possible assembly instructions. These are:
- Binary - Assembly - English
- 0000 - NOP - No Operation
- 0001 - LDA - Load A register
- 0010 - ADD - Add
- 0011 - SUB - Subtract
- 0100 - STA - Store A register value in memory)
- 0101 - LDI - Load Immediate (value) to A register
- 0110 - JMP - Jump
- 0111 - JC - Carry Jump
- 1000 - JZ - Zero Jump
- 1110 - OUT - Display Output
- 1111 - HLT - Halt Operation

Conclusion
This project was very successful in completing the objective. I learned how to construct a basic CPU using bus architecture and all the require modules needed to accomplish it. This project also gave lots of experience in being able to select integrated circuits (IC), and combining them to collectively perform any task, then being able to write custom assembly code to give it a basic instruction set. However, the breadboards caused power issue at this scale due to their high resistance, which caused a few bugs along the way with ICs not being powered properly. Future large scale breadboard projects would involve soldering each module to at least a perfboard as they are completed.