An open API service indexing awesome lists of open source software.

https://github.com/adzialocha/8bit

Notes on building a 8bit CPU
https://github.com/adzialocha/8bit

6502 8bit computer-architecture logisim

Last synced: 11 months ago
JSON representation

Notes on building a 8bit CPU

Awesome Lists containing this project

README

          

# 8bit

These are my notes on building a 8bit computer. The circuit is simulated with the great [Logisim](http://www.cburch.com/logisim/de/), I've also written a converter for my [assembly language](https://github.com/adzialocha/8bit/blob/master/tools/assembler/assembler.c) and a helper to write [micro instructions](https://github.com/adzialocha/8bit/blob/master/tools/microcode-editor/microcode-editor.html).

### Folder structure

* `asm` contains sketches and final programs written in 6502 or my own assembler.
* `circuit` holds all Logisim projects, `v3` is the latest.
* `microcode` the microcode program for the circuits control unit (can be read, edited and saved by the microcode editor tool).
* `notes` different notes on the architecture, memory organisation, opcodes etc.
* `tools` small software projects to help me designing the computer.