Close
0%
0%

The Blinking Computer

An educational 16-bit CPU made from < 1024 transistors with lots of LEDs that anyone can build and learn from

Public Chat
Similar projects worth following
The goals are:
* Simple enough so that everyone can see how it works, that means lots of LEDs
* Complex enough to demonstrate the main ideas of a computer
* Small enough to be affordable by anyone with the time to build it
* Quick enough to build and keep my (and those that follow me) family life
* Fast enough to run some complex software
* Slow enough so that everyone can see it running and understand it step by step
* Flat enough so that the entire state can be seen in one go

If I get one or two completed I'd love to donate one to The Centre for Computing History (http://www.computinghistory.org.uk/) who convinced me to make this an educational computer.

All the details, including all of my mistakes, are on www.blinkingcomputer.org. When I finish something big then I post it to a project log here.

  • The Blinking Computer lives!

    Tony Robinson11/29/2021 at 11:19 0 comments

    The Blinking Computer never really died, it just ran at 0Hz for a while....

    The original design had 5 general purpose registers and used a Raspberry Pi for RAM.   It's sad but true that if your hardware skills are at my level everything has to be very very simple and the 128 bits of storage that the design called for along with some complex instruction sequencing was too much for me.   So I really went down the rabbit hole of storage and simple architectures for a long time.  Also I wrote a ton of code for the old architecture, including a Forth like language, floating point, random numbers, etc and that's now archived on github.

    I hope I'm about to emerge from the rabbit hole.   I have a CPU whose only state is the program counter and three flags (carry, zero and negative) which address 32 bytes of RAM.   What's more it only has one sort of instruction, Mi = Mj OP Mk., that is load a couple of bytes, throw them through a simple (1 bit!) ALU and write the result back.  I think this is as simple as it could ever be and still be useful as an educational computer (do leave feedback!).   I've written some notes and even published a spreadsheet which runs simple code.   

  • 3 input XOR in 4T 2R

    Tony Robinson02/16/2019 at 10:50 10 comments

    This log is redundant - there is a complete Full Adder which uses this circuit at  https://hackaday.io/project/160177-alu-in-dctl-technology/log/150451-full-adder and that work predates this and is more complete.

    But, for the sake of not deleting valuable comments below, here it is (for now).

    Addition can be decomposed into a carry chain (see past and future logs) and a three input exclusive OR operation which takes the two external inputs and the carry and produces the result.

    https://hackaday.io/project/8449-hackaday-ttlers/log/150147-bipolar-xor-gate-with-only-2-transistors is the place to start for all things XOR.   I'm just cascading two XOR in the same way as https://hackaday.io/project/160177-alu-in-dctl-technology/log/150451-full-adder and tweaking a few things.

    The left hand side a typical BJT set up, some current sets a bipolar transistor to conduct or not, in which case either A is near ground or is wired to the +ve supply via a resistor.   I've put it in to show that this is the input we need and also because it was what was needed to help me understand what is going on.

    The output has the same characteristics as the left hand side, it's either to ground via a couple of BJT or to +VE via the resistor.   I used 330 Ohm resistors, these being slightly faster than 10k.   The BJTs are 2N3904s.    Currently I'm getting just over 500 kHz, which is good enough.

  • Yet another memory cell - 2T

    Tony Robinson01/29/2019 at 09:25 8 comments

    So here I go again - here is another memory cell which I'd be pleased if the community could criticise.

    For background, I want to build a discrete component CPU with enough LEDs so you can see how it all works and for it to be simple enough that others could build the design (e.g. for it to be a school 6th form project).  It has quite a few registers, about 8, so that you can see how a processor works (smaller would be possible but tortuous to program).   It's got a 16 bit instruction, data and address space to keep everything clean.   So, just for the sake of keeping things clean there are a lot of memory cells to build, something like 16 x 8 = 128 and this could dominate the component count and so be the major blocker to other people building this processor.

    So I want the smallest number of components to build a memory cell.   The accepted smallest number is two, the standard DRAM design, in which a capacitor stores charge and is isolated by a MOSFET.   Whilst I applaud the efforts to recreate these in discrete components (look at https://hackaday.io/project/8449-hackaday-ttlers/log/44217-dynamic-ram-with-single-mosfet-per-bit) I really can't get my head around the precharge and the sharing of the bit line between read and write.  My CPU is meant as an introduction to everything from resistors through to compilers, so if it's not simple for me to understand then it's too complex for my processor.

    As a result I've done a lot of thinking and here is a 2 transistor memory cell using a capacitor to store the charge:

    Or, showing all the shared components, here it is as part of a register file:

    DataInAll is the data line for one bit position across all registers/words.  It drives a NPN/PNP pair so that one conducts and the other doesn't.  So DataIn is connected to ground or +ve.   Provided WriteEnable is set low, then the capacitor keeps its charge, but if WriteEnable is set high then the capacitor will charge or discharge according to DataIn/DataInAll.   Reading is done with the MOSFET, so it doesn't suck current from the capacitor.   If ReadEnable is high then the state of DataOutAll is set by the state of the MOSFET, and the charge on the capacitor.   Only one register/word has ReadEnable set high, so only one can pull down DataOutAll.

    From playing about, it seems that the capacitor is not needed, I can use the gate capacitance of the MOSFET.   So that's just two components for the memory cell.  I can't get lower than two so hopefully I can now move on to fixing  my diode ripple carry, the rest of the ALU, etc.

    With no capacitor, things run fast.   Using a RPi I can put data on DataInAll, assert write enable, wait, ground WriteEnable, assert ReadEnable, wait, read the data, ground ReadEnable all at 200kHz.   That's as fast as I've got any of my memory cells to run, and is pushing the limits of WiringPi to set the GPIO (ultimately I'll abandon WiringPi).

    Note that whilst I could use just the BJT and MOSFET (as above), the requirement that every state is visible means that I'm using the MOSFET to power a LED and running the read circuitry from that.   I want two read lines, so I have the basic BJT and MOSFET as above (no capacitor) but then I'm using an LED two more BJT, one for each read line.   So that's 5 components in total, not 2 as above, but a big improvement on the 21 components of my last written up memory cell.

  • DIY PCB - the problem of cheap visible circuit construction

    Tony Robinson03/08/2017 at 10:20 0 comments

    The biggest problem in this project has always been to create a processor that others can see what is going on, build it themselves and adapt it themselves.

    This is quite a design challenge for me. I want all the components and wiring to be visible and I'd like the costs to come in at about £100 so that I don't put off others building and adapting. I believe this rules out standard PCBs.

    I'm developing the idea or printing onto paper, sticking the paper on matrix board and mounting all components though the paper. All wiring is then visible on the front surface. I am allowing myself power supply wiring on the reverse, using map pins (or similar) on the visible side.

    So far I like the idea. The white background gives good contrast and the finished circuit does look like the schematic, so making electronics visible, my main goal. Here is my first "PCB":

    What I haven't got right yet is (a) what to print (b) I need whiter heavier paper (maybe plasticised) and (c) it's fiddly getting 4 legs down one hole. Oh, and it has to work of course, what you see above isn't soldered on the reverse, this is very much work in progress.

    More detail at http://www.nanocpu.org/leds-and-wiring

  • A 2 transistor 9 diode memory cell

    Tony Robinson03/01/2017 at 15:53 0 comments

    Here is (hopefully) the final memory cell architecture for my processor.

    It uses two transistors as a flip-flop to store the state, S. There is also: IN - data in, WE - Write enable, OUT - data out and RE, Read enable.

    Write is:

    S = (S AND NOT WE) OR (WE AND IN)

    (the NOT comes for almost free as it's shared across all 16 memory cells in a register).

    Read is:

    OUT = S AND RE

    Both AND and OR may be implemented with two diodes and a resistor (e.g. http://electronics.stackexchange.com/questions/131860/diode-logic-gates). This is the simplest memory cell I can think of, if you double the write logic you can write to both halves of the flip-flop at the same time which improves speed - but I value simplicity over speed.

    So, after fighting http://circuits-cloud.com/ all day (most saves fail and force a reload of the last successful save making progess painfully slow - I'm not using them again), here is the circuit diagram:

    The left hand side does the write, the right hand side does the read (to two buses, 2T 9D is for only one read). Let's say we want to write, then we set WE high and the left AND circuit has the value of IN, where as the next AND circuit is low (as !WE is low). The OR of these two AND circuits is therefore the value of IN. Hence the base of NPN1 is set to IN, if it's high then the transistor conducts and the LED light is lit. R3 sends a low to NPN2 which is then off. When WE is low, !WE is high, so the output of NPN2 is fed back into NPN1 and a bit is stored.

    The right hand side does the read and is considerably easier. Both OUT0 and OUT1 are AND functions of the relevant read enable signal (RE0 and RE1 respectively).

    If anyone knows of a decent circuit layout for matrix board I really need it.

  • Fast carry propagation for a new ALU

    Tony Robinson02/23/2017 at 07:19 5 comments

    I decided to redesign my ALU, the old one worked but it wasn't easy to see how it worked. It was too clever, I think people expect an ALU to compute everything (AND, OR, XOR, ADD/SUB, ASR) in a way they can see and then select the right output - that is much easier to understand.

    Minimal ALUs are limited by the ripple-carry propagation time, so the first thing to do was to get my fast carry propagation design working. The slow bit of bipolar junction transistors is switching them off, so I got rid of all of them and used diodes to do all the carry propagation (these will be Schottky diodes for fast switching and low voltage drop). So here it is in it;s simplest form:

    Generate, G, is high if both inputs are high. Kill, K, is high if both inputs are low. The carry goes in on the left, if K1 is high then the first NPN is on and the carry is grounded, if G1 is high then the carry out is high else the carry is propagated. That's pretty simple, I feel confident I can both get this implemented in a way that you can see the signal flow (as above) and thus be able to explain how this time-critical bit of a CPU works to all.

    There's more detail at http://www.nanocpu.org/alu

  • the state machine - or lack of one

    Tony Robinson02/09/2017 at 20:40 0 comments

    Wow, the state machine of the CPU is hard - really hard. I thought I should start with what took the most real estate, the ALU and the memory cells, now I think I'm (touch wood) on top of both of those (I will update logs with progress as and when) but I'm struggling with the state machine - that is the bit of logic that raises all of the right enable lines at the right time. I shouldn't be at all surprised, there's a few people on home-built computers web-ring who said the same thing - it's the go-to site.

    So this isn't really a log entry as I don't have a state machine. What I find fascinating is that a CPU is something that, in my software world, runs compiled code (leaving aside the fact I run Python under Linux in a VM running Windows) but is really something that may execute microcode which may execute itself to fetch instructions (my I = *P++) which executes a state machine which executes a set of control lines which executes a set of logical functions which are expressed as analog signal processing where semiconductor physics (my almost-lost first degree) does the hard work.

    So many levels. I really don't like public speaking unless I have something worthwhile to say, but taking all this from a "BASIC" language through FORTH, assembly code, right the way down to the electrons and holes is something I feel confident I can engage and audience with. Teaching technology is not my goal - my goal is to encourage others to explore their dreams, however corny that sounds. But to do that I've got to succeed and that's a lot more time and effort away that I can plan for (even when you take into account Hofstadter's law).

  • 3.3v vs 5v

    Tony Robinson01/27/2017 at 19:17 14 comments

    Right now my #1 question to sort out is should I run this at 3.3v or 5v? 3.3v has the advantage that transistors switch faster, and I'm an optimiser so I would like this. However I love blue LEDs and have just bought a thousand of them, these are on max current when wired 3.3v -> LED -> NPN -> ground without a current limiting resistor. Should I worry that the LED might short and so blow the lot? (yes I think so). Also my new carry logic uses a diodes ladder which would like 5v much more than 3.3v (at a pinch I could use 5v just for this). So what should it be, 3.3v or 5v - I have yet to decide.

    [ I've been out of the country on a work trip so haven't had any time for this in the last week and a bit - some new Schottky diodes have arrived and I need to stress test my new memory cell - time to take a day's holiday I think ]

    P.S. it seems that there is a maximum thread depth which is stopping me replying directly below some of the comments. As a result they are appearing above which does confuse the flow.

View all 8 project logs

Enjoy this project?

Share

Discussions

fabian wrote 07/21/2018 at 07:49 point

is possible to create emulator for non elektronics?

  Are you sure? yes | no

Tony Robinson wrote 01/13/2019 at 11:54 point

I have a register level simulation/emulation which I've used to write a basic FORTH and using that I've got multiword integer and floating point arithmetic going (C emulator, Python "compiler").   I' m more than happy to share the code, but it's not in a respectable github state yet.

  Are you sure? yes | no

Tony Robinson wrote 11/26/2021 at 14:34 point

It is now - https://github.com/drtonyr/pis-third-asm-emu

  Are you sure? yes | no

roelh wrote 03/30/2018 at 20:04 point

Hi Tony,

Is your project still active ?

I have an idea for a one-transistor flip-flop. You might be able to save a lot of transistors ! See https://hackaday.io/project/112126-one-transistor-flipflop !

  Are you sure? yes | no

Tony Robinson wrote 04/01/2018 at 09:35 point

Due to other stuff happening, it doesn't look as though I'll get much time this year.   It has progressed more than I've had time to write up.  In emulation have basic control structures and floating point going so can code up quite a bit.   I do need to get the component count down, not so much for cost reasons, but to make these fast enough for many others to build one themselves.   So thanks for your design, I've learned much already and will continue to think about it.   I really like the novelty, I've tried (and failed) to use the transistor threshold voltage in a number of designs, those that know more than I do suggested I stick to logic (which was good advice) but if I can get a low component count memory cell that's explainable then that would cut down my construction time.   I do like the use of capacitors, I'd ruled them out as being too slow.  Having a clock is a challenge to me, currently the RPi provides the 'clock' down to DC so that it can all be slowed down enough to see everything that happens.   So, lots to think about - many thanks!

  Are you sure? yes | no

Dr. Cockroach wrote 03/07/2017 at 20:51 point

Good afternoon, I like checking in on your progress. I have some glitches in my project at each stage and it sure has been a learning curve for me but fun at the same time :-) I might try your memory cell out. My memory for the registers is not set in stone yet.

  Are you sure? yes | no

Yann Guidon / YGDES wrote 01/18/2017 at 03:24 point
9 diodes ? That's "above average" :-D

  Are you sure? yes | no

Tony Robinson wrote 01/13/2019 at 12:18 point

Indeed.   I'm just not confident enough to go some precharge and differential amplifier route to RAM, so it's all logic based. I needed two AND gates to do the input and one for the output and each AND gate was three diodes.   As well as 9 diodes I had 5 resistors, 2 transistors and an "optional" LED (not really optional if you want to see the state of every memory cell, and yes I know an LED is a diode and I'm not counting it along with the 9 standard diodes).   So that's 9 + 5 + 2 + 1 = 17 components per memory cell.   I think this was the reason the project stalled, there are roughly 8 registers so that's over 2000 components without ALU, address decoders, state machine, etc.    I have to admit that I was artificially drawn to minimising the number of transistors, it makes a good headline number and a 750 transistor CPU was very appealing.   But there is no glory unless I get over the finish line, so I can now see another two transistors per memory cell being used.   This would then be 4 transistors, 6 resistors and 1 LED, so 11 components, which is a sensible improvement (actually it's better than that, I want two read lines, as per the diagram, so it's a reduction from 21 to 12, or almost half).    It does involve mixing bipolar and MOSFET so hopefully you will provide more useful feedback when I get it built and written up.

  Are you sure? yes | no

Tony Robinson wrote 01/17/2017 at 16:28 point

I will keep trying!   I now think I have a two transistor, 9 diode memory cell.     You will like the fact that it works on logic, not some dodgy assumed behaviour of NPN bipolar transistors.   I don't know when I'll get the time to put it together and write it up, hopefully this weekend.   Cheers, Tony.

  Are you sure? yes | no

Yann Guidon / YGDES wrote 01/14/2017 at 17:11 point

Thank you for sharing and being open, I'm sure you learn a lot from your mistakes and will make something very cool soon :-)

Developing a good flip-flop is a lost art and there is no shame in making mistakes, everybody does that :-D

Keep trying !

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates