remix logo

Hacker Remix

Build an 8-bit computer from scratch (2016)

370 points by jcartw 4 days ago | 61 comments

rs186 19 hours ago

I did the whole thing, was able to get the Fibonacci numbers appear and learned a lot during the process. However, I would not recommend other people to try this today, because --

* It is not necessarily the best way to spend your time and money. You'll be looking at tens of hours on building it plus over $300 in parts, for a very slow and basic computer that you probably will forget and throw away at some point. Cutting and laying out wires are some of the most tedious and frustrating process. There are other cheaper, more efficient ways to learn how a computer works. It may or may not be worth the effort to you.

* The tutorial is really old, with some very questionable design choices and no updates from the author. Some of the designs are just plain wrong -- e.g. floating inputs or missing resistors. It is very unlikely you can reproduce it by strictly following the tutorial. You'll need to spend time debugging those issues and go to reddit to see other people's experience with this, potentially seeking help as well. No doubt debugging is an important part of designing and understanding the circuit. But only if you have the foundational knowledge and patience, of which I happened to have, but I can imagine that someone who does not understand digital electronics well enough can easily get lost and feel defeated.

* To make the previous point worse, some of the parts are hard to source, depending on where you are. (You'll likely fry or physically break a few components when building it.) Many of the parts are not very commonly used these days, and not exactly easy to acquire, if you only need 1 or 2 of them. I had to go to eBay to get some of them, which took about a week, during which I had to stop and wait for parts to arrive.

With all that said, this may still be the best resource out there that lets you build all these on a breadboard, as I am not aware of an alternative that addresses all the issues above.

stouset 18 hours ago

I’ll play devil’s advocate.

Following Ben’s videos and building the 8-bit CPU is the first thing that ever helped me “get” electronics and circuitry.

Honestly, way more than half of the fun has been in finding the design flaws and designing fixes for them as well as improving and expanding the design itself.

I have learned so much by going down rabbit holes. The original clock design assumes a make-before-break switch but the one shipped with the kit is the opposite, and this can put one of the flip flops into an invalid state. I switched to CMOS chips and learned why you shouldn’t drive loads like LEDs directly from digital outputs, and dove into the easiest way to power 8 LEDs off 8 IC outs without a mess of transistors. I followed another person’s expansion to a full 8-bit instruction register and a more featureful ALU (with my own changes of course). I worked to minimize power consumption. I’ve learned how to use an oscilloscope. I’ve improved upon nearly every module, and built and rebuilt them all a handful of times.

None of this has any real benefit for the CPU. It will never run anything more than toy programs. But that wasn’t ever the point.

All the flaws in the original design have been perfect as launching points for learning more and more.

kevstev 7 hours ago

I would be shocked if anyone is really looking for anything practical out of this, its more of a lab exercise that lets you learn by actually doing things. I learn best this way. It's one thing to draw a circuit, or even put it in a simulator, but the act of hooking up the chips, and watching the blinking lights really sticks with me, and far more deeply ingrains the concepts in my head. And while the 8-bit kit is expensive, and time consuming, I found it worthwhile. There is probably a lot more value to be had in the 6502 series though, if for no other reason that the 6502 is iconic, and it was something of a thrill to me to really understand at a basic level the chip that powered the NES I spent so many hours with.

dowager_dan99 3 hours ago

and you might want more than 16 instructions in your programs!

dowager_dan99 3 hours ago

Pretty strong disagree with your take (though seems like you end with "this is a bad path with no viable alternatives"?). Laying out the breadboards and wiring this has frustrations but that's part of the experience. Same with the design choices; one of the most valuable things my most-digital of minds learned was that you can never escape the analog world completely. I don't think you should be looking for cheap and efficient in this realm, but what I did to source everything was make a big ali express order about 3 months before I planned to tackle this (over a Christmas/winter break), sometimes ordering the same part from multiple suppliers, and then forgot about it, until the packages started to trickle in. You probably already have a lot of the basics, so you can do this for < $200 pretty easily. Meanwhile I completed the NAND to Tetris project, which was very complimentary. I didn't find any parts particularly hard to source and have more basic gates than all ever use.

rs186 51 minutes ago

You are free to disagree. The project took me way longer than I expected, and while it (building the whole thing) was fun, the experience barely helped deepen my knowledge of electronics or computers -- the videos themselves were already very educational. I wouldn't have done it if I had a better idea of what I was getting into, but anyone can make a different choice if they value their time and money differently.

codedokode 29 minutes ago

$300 is somewhat inflated estimate - for example, the breadboard's price is estimated as $4-$9 but I usually buy breadboards at $1.5 each (well, there is a warning that they might be worse quality but I am not used to expensive breadboards so don't notice any issues and I don't care if they are slightly different shade of white).

JKCalhoun 23 hours ago

I always upvote Ben Eater's project(s).

I got his 6502 kit and worked through his YouTube videos to get it up and running with LCD display and all. I want to actually frame it and get it running, hanging on a wall.

If anyone is new to Ben, find a comfortable chair or couch, make some tea, take a breath, and begin your descent into his long-form breadboard series of nerd-splaining how a CPU works, beginning with basic logic gates.

His follow-on series is a little higher level. He's still at it with the breadboards but he allows that this time the CPU (a 6502) is already built for us. He then walks through how the address bus works, how to attach RAM, etc.

It makes me wish I could be transported back to the 70's when things could still be understood.

yoyohello13 22 hours ago

+1 for the 6502 kit. It’s the perfect project. I think the full 8-bit computer is kind of daunting. The 6502 is just big enough to be a fun medium size project. Plus there is a perfect extension project with the video card if you want to add that on.

enneff 22 hours ago

His series on building a video adaptor is a particular favourite of mine.

wvenable 19 hours ago

I also did the 6502 and added a Pi Pico for VGA output and USB input.

I'm still working on ways to add more to the design -- it's been a fun hobby. I actually enjoy cutting the wires and physically putting it together.

ninalanyon 6 hours ago

If anyone wants to avoid adding a full scale computer just to get TV out I recommend the late Don Lancaster's The Cheap Video Cookbook and Son of Cheap Video.

See https://archive.org/details/donlancaster_socv1/page/n3/mode/..., https://annas-archive.org/isbndb/9780672217234

nanolith 15 hours ago

The Ben Eater computer is an interesting starting point. With a few modifications, such as an extended program counter / address bus, a combinatorial ALU programmed in flash, and a few more registers, it can be upgraded to a more powerful, if slow, computer.

Further, these circuits can be directly simulated in an FPGA if you want to teach yourself an HDL like VHDL or Verilog. You really want to learn better and faster ways to organize a CPU, but it's a fun way for a beginner to bridge into this kind of work.

At the local hackerspace, we actually taught a class that assembled a hybrid 8-bit / 16-bit variation of this computer with 1MB of RAM, an 8-bit ALU, a 16-bit data bus / registers, and a 20-bit address bus. With this additional capability, we could program it over serial with a very basic bootloader, and it was powerful enough to compute pi to 1000 digits. Granted, this took about 18 hours, but it could have run faster with a printed circuit board and a crystal oscillator. We just never really got to that point.

As for how powerful such a computer with discrete logic can be, consider that the KB-11A CPU for the PDP-11/45 was built using 74-series logic ICs. It wasn't until after this system that DEC moved on to VSLI. So, this is a way to play with technology found in computers in 1972 / 1973.

As a stepping stone to digital logic and FPGA work, Ben Eater's tutorial isn't bad. Just get yourself a copy of Don Lancaster's TTL Cookbook or CMOS Cookbook to bring his tutorial up to best practices.

codedokode 54 minutes ago

Just wanted to add that there is "a homebrew computer ring" project [1] and you will be surprised how many ideas for DIY computers you can find there.

(I also made a two-breadboard CPU with ~5 instructions myself but had yet no time to finish the software)

[1] https://www.homebrewcpuring.org/