Settings

Theme

An 8-bit minicomputer with a fully custom architecture

github.com

82 points by tirrex 4 years ago · 32 comments

Reader

codezero 4 years ago

Slightly off topic, but I'm looking forward to FPGA tooling improving to the point where I can build a fantasy personal computer based on dragging and dropping architectural components into a design that compiles to hardware.

I'm definitely too lazy to design from scratch or build by hand, and there's already so much out there designed for FPGAs, so just hoping one day it may be plug and play like the Mister is for entire systems.

  • anyfoo 4 years ago

    Quite possibly I misunderstand on what level you mean that, but I think the devil is in the details, and "drag and drop your computer architecture" seems as unrealistic in practice as "drag and drop your application" turned out to be.

    Unless you mean "architectural components" at such a high level that you don't mean to define (say) a CPU architecture, but basically just adding "device" soft cores to a common bus (or multiple) and configure their parameters, and where they are mapped in the address space and so on. In which case, that pretty much exists already today!

    Quirks aside, you can totally drag, say, soft cores for a CPU, a few 16550A serial ports, video output devices, ethernet controllers, USB controllers--whatever you can think of essentially--into a Vivado block design, attach them to an AXI bus (whose structure you can also define graphically with many bus components to chose from), configure the memory map (or accept the defaults), and have "a computer".

    Depending on the nature of your computer it might not even be much work to then get it to boot into Linux through U-Boot, with a device tree generated by the toolkit.

    But I can imagine a simpler, "dumbed down" (in a useful way) more dedicated piece of software where this could be possible without knowing much of anything about FPGAs, yeah.

    • codezero 4 years ago

      I don’t have anything particular in mind, just excited about hard stuff getting easier and seeing a lot of different hardware components as essentially input/output devices. With the right duct tape, they may be stuck together by someone more clever than I. Totally on the I can imagine side here :)

  • hermitdev 4 years ago

    I used such a program, I think from Altair, in 2000 to design and simulate an 8-bit CPU not all dissimilar from the one in the article as part of an undergrad computer architecture course. It was all drag & drop from a logic gate level. You could build your own components out of gates (or include others). IIRC, we had a module for registers supplied to us, for example.

    It was pretty slick. It included a simulator as well. I imagine it probably used verilog or vhdl under the hood (but I wouldn't learn Verilog proper until 3 years after). I think there was functionality to work with an FPGA, but we didn't use it for the class.

    It was definitely the sort of project that really got me excited in college and I knew for sure I was on the right track with what I wanted to study.

  • rwmj 4 years ago

    That's sort of (if you squint a great deal) what you get with Chisel and RISC-V Rocket Chip. It's not drag and drop but you can customize the design to a certain extent just by editing some parameters in a file. It only applies to the cores and close components like the cache and off-chip links. There isn't a good integrated range of open source peripherals.

    Old presentation about this: https://riscv.org/wp-content/uploads/2015/01/riscv-rocket-ch... especially slide 6

  • miselin 4 years ago

    This would be wonderful - I hacked on a CPU architecture and brought it to an FPGA by manually converting a Logisim [1] schematic to VHDL. It's still terribly buggy.

    Maybe it'd be possible to write an integration for the (unmaintained) Logisim to export the schematic to a HDL of some sort to get close.

    [1] http://www.cburch.com/logisim/

    • ChickeNES 4 years ago

      > Maybe it'd be possible to write an integration for the (unmaintained) Logisim to export the schematic to a HDL of some sort to get close.

      No need, Digital (https://github.com/hneemann/Digital) already does this:

      > A circuit can be exported to VHDL or Verilog. There is also direct support for the BASYS3 Board and the TinyFPGA BX board. See the documentation for details. The examples folder contains a variant of the example CPU, which runs on a BASYS3 board.

  • whateveracct 4 years ago

    It's not a GUI, but Clash's ideals (aka Haskell's) are exactly what you're looking for. Small, composable components.

  • jareklupinski 4 years ago

    that sounds like Quartus Block Design, I used it to program a simple 'dynamic ROM' onto a CPLD once: https://youtu.be/rw7xYkM1-HY?t=219

Teknoman117 4 years ago

I kind of want to try to make a "74 series logic" RISC V CPU at some point so I can inherit the compiler.

It's rough building the larger systems though. All the early logic is still around for the most part, but most of the "medium integration" parts have disappeared. Things like register files and bitslice ALUs. (74x181, etc.)

HappyJoy 4 years ago

I really enjoy when these hobby projects get posted. Tinkering for the sake of it is so much fun. Thanks for sharing

Animats 4 years ago

Somebody is way too into solderless breadboards.

I can see building a CPU from smaller components, but not dealing with loose connections in that mess.

  • eco 4 years ago

    Ben Eater had a whole video on why he encourages building a breadboard computer.

    https://www.youtube.com/watch?v=fCbAafKLqC8

    A lot of people have taken what they've learned and moved on to designing their own PCB versions. You can see some of them here: https://www.reddit.com/r/beneater

    • asddubs 4 years ago

      ben eater does a little bit of wire management though. i'd hate for a wire to pop out in that rats nest

  • LargoLasskhyfv 4 years ago

    While the color coating of the wires can be useful, I preferred enameled copper wire/magnet winding wire of 0.3mm gauge, when I did such stuff. Maybe 0.2mm, NOT 0.1mm!(too soft) At 0.3mm they are tightly bendable, stay in place after bending them, and can touch each other. This enables building of esthetically pleasing structures, instead of the pictured mess. Imagine something like the pipes screensaver from the WinNT 4 days, but shining in copper. Also usable to wire together LED-cubes or similar structures.

  • sokoloff 4 years ago

    Reminds me of the old MIT 6.004 nerd kits. (Roughly a suitcase-sized briefcase with breadboards and TTL components to build a CPU with.)

userbinator 4 years ago

Those register names seem to be 8008-inspired:

    A (0): GP register/arg 0
    B (1): GP register/arg 1
    C (2): GP register/arg 2
    D (3): GP register/arg 3
    L (4): GP register/(L)ow index register
    H (5): GP register/(H)igh index register
It claims to be a "RISC architecture" but the instructions are 1-3 bytes variable length, which is also more similar to the 8008 and other early 8-bit CPUs.
metaphor 4 years ago

> Designed for 4 MHz clock speed, ~100-150k instructions/second [1]

Given the scale of the breadboarded rat's nest prototype, was this actually achieved?

[1] https://github.com/jdah/jdh-8/blob/c621a9980a7d4eb7aa4debc62...

tempodox 4 years ago

Neat! But shouldn't this rather be called a nanocomputer? Minicomputers could still fill a room at their time [1]. Our desktop machines are “microcomputers”.

[1]: https://www.computerhistory.org/revolution/minicomputers/11/...

ngcc_hk 4 years ago

Microcomputer??

bullen 4 years ago

C64 is better in every way.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection