Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 713 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 713 Bytes

FPGA implementation of the Gigatron TTL microprocessor

Required software

  • Verilator;
  • SDL2 development files;
  • Extra utilities: wget, and hexdump.

Building the code

To build and simulate the computer using Verilator, just type:

make

To clean the repository, type

make clean

Overview of the repository

  • The directory data contains the ROM file for the Gigatron computer;
  • The directory rtl contains of the Verilog code for the Gigatron TTL cpu;
  • The directory emulator contains a Gigatron emulator written in C language;
  • The Verilator code can be found inside tests;