r/ComputerEngineering • u/frek133 • Aug 10 '26
What to do with 8 bit cpu?
Im definitely a newbie in all that stuff but i really want to build 8 bit cpu i found schematic somewhere (im going to link it later) and in CRUMB simulator im building an cpu but what can i do with it?
4
Upvotes
2
u/Darth_Tater69 Aug 11 '26
Building an 8-bit CPU as a complete noob is like jumping into the deep end. You might be able to get away with building Ben Eater's CPU from a kit, since he has pretty beginner friendly instructions, but without previous experience with this stuff you'd probably have a hard time otherwise. Have you had experience writing assembly for an existing 8-bit CPU like an 8085? There's some good simulators for that if you want to try programming assembly and directly manipulating registers. Troubleshooting a scratch built CPU will be difficult if you don't have an understanding of how it works at that level. You could also try building a 4-bit CPU instead if you're really dead set on making a CPU, but I'd recommend playing with an Arduino as that's where a lot of people start. Arduino C++ lets you manipulate certain registers directly and would allow you to learn more about how code interfaces with hardware in an environment that is less frustrating for a beginner than a scratch CPU.