crystalline / mini-risc16

Tiny implementation of 16bit RISC cpu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#A Simple 16-bit RISC CPU ISA & implementation
This is an example of how one could approach design and implementation of a reduced instruction set computer with custom ISA. 16 bit RISC design presented here is implemented in Verilog HDL. The CPU can be simulated using open-source Icarus Verilog simulator. Results can be viewed in GtkWave waveform viewer.

#How to run it
Clone the repo:

git clone https://github.com/crystalline/mini-risc16`
cd mini-risc16

If you are using debian-like linux distro (e.g. ubuntu) you can install dependencies with apt:
sudo apt-get install iverilog gtkwave

Run the simulation of RISC CPU executing a simple loop:
iverilog TestCore.v -o sim && vvp sim

View the waveforms dumped by the simulation:
gtkwave TestCore.vcd

Now you can inspect the state of the CPU by appending variables to "Signals" list in GTKWave GUI: Waveforms

###ISA summary (in russian) ISA ###Opcode format (in russian) Opcodes ###Pipeline architecture (in russian) Pipeline

About

Tiny implementation of 16bit RISC cpu


Languages

Language:Verilog 93.2%Language:Coq 6.8%