Difference between revisions of "Almost as Simple as Possible (8-bit CPU)"

From Stm32World Wiki
Jump to navigation Jump to search
Line 42: Line 42:
 
[[File:I-O Board - top.jpg|300px|thumb|I/O Buttons and LEDs]]
 
[[File:I-O Board - top.jpg|300px|thumb|I/O Buttons and LEDs]]
 
Monitoring all busses and registers would potentially require a lot of wires.  To make that a bit easier, I created a small I/O board which hook up to 8 I/O pins.  Each pin has got a LED driven by a MOSFET and also a button (in case it is input).
 
Monitoring all busses and registers would potentially require a lot of wires.  To make that a bit easier, I created a small I/O board which hook up to 8 I/O pins.  Each pin has got a LED driven by a MOSFET and also a button (in case it is input).
 +
 +
To test the boards themselves, as well as the I/O of the extension board, I hooked up 10 (which is the max as the remaining port is Ethernet).  I ran a simple 8 bit counter on each and it looked like this:
  
 
{{#ev:youtube|yvwz2PWnlcw}}
 
{{#ev:youtube|yvwz2PWnlcw}}
 +
 +
It is worth noticing there are 2 issues.  2 bits are missing from the lower left port and 1 bit is hanging on the lower second from the left.
 +
 +
The missing 2 bits is because those are simply unconnected on the extension board (for some mysterious reason) and the hanging bit is because that pin is wired up to the [[STM32]] [[MCU]] that is used to program the board.
  
 
=== Gallery ===
 
=== Gallery ===

Revision as of 10:23, 22 November 2022

About 6 years ago (at the time of writing), Ben Eater started a series of Youtube videos (see here, where he is building a very simple (but complete) 8 bit computer on a breadboard using almost exclusively discrete logic chips. Since then, this simple design has attracted a huge following and a lot of people have developed something similar. It has even gotten to a point where the original design has gotten itself a name - most people call it SAP-1 (Simple as Possible) although I don't think Ben Eater ever used that name himself.

I can not stress enough how big an inspiration those videos has been to me (and if you have not watched them, quit reading this page and go watch them now) and ever since watching them I have wanted to build one myself. However, I absolutely hate breadboards with a vengeance, so building SAP-1 on a breadboard was for me never a real option.

I was toying around with the idea of starting a series of PCB's putting the different modules together. This idea was/is attractive to me but the problem is that the old TTL/CMOS logic chips are getting quite expensive and some are hard to get.

Fortunately, a third option presented itself, when I got my hands on a ColorLight I5 module with accompanying extension board. With 25000 logic units, this FPGA is plenty big enough to implement something like this, and doing it in a FPGA will keep my desk way less messy than doing it on a breadboard.

Compared with Ben Eater's design, I made a few tentative decisions:

  • All logic "active high"
Ben Eater's design uses standard logic chips and these often use active low for signals like chip select and output enable. On a FPGA there's absolutely no reason to do this.
  • 256 byte memory
The original design had a shared program/memory space of 16 byte. This was done for a number of reasons.

Clock

The ColorLight I5 has got a 25 MHz crystal oscillator.

Freq Divider
0.1 Hz 125,000,000
1 Hz 12,500,000
1 kHz 12,500
1 MHz 12 (ish)

I/O Button and LED Board

I/O Buttons and LEDs

Monitoring all busses and registers would potentially require a lot of wires. To make that a bit easier, I created a small I/O board which hook up to 8 I/O pins. Each pin has got a LED driven by a MOSFET and also a button (in case it is input).

To test the boards themselves, as well as the I/O of the extension board, I hooked up 10 (which is the max as the remaining port is Ethernet). I ran a simple 8 bit counter on each and it looked like this:

It is worth noticing there are 2 issues. 2 bits are missing from the lower left port and 1 bit is hanging on the lower second from the left.

The missing 2 bits is because those are simply unconnected on the extension board (for some mysterious reason) and the hanging bit is because that pin is wired up to the STM32 MCU that is used to program the board.

Gallery

Miscellaneous Links