├── .gitignore ├── FPGA for software developers.pdf ├── FPGA for software developers.pptx ├── Go_Board_Constraints.pcf ├── LICENSE ├── Makefile ├── README.md ├── alu.v ├── apio.ini ├── boot.mem ├── catch.hpp ├── copy_boot_mem.sh ├── grom8.core ├── grom8.ice ├── grom8.vlt ├── grom8_cpu.ice ├── grom_computer.v ├── grom_computer_tb.gtkw ├── grom_computer_tb.v ├── grom_cpu.v ├── grom_top.v ├── hex_to_2_x_7seg.ice ├── hex_to_7seg.v ├── instruction_set.txt ├── ram_memory.v ├── test_alu.cpp ├── test_comp.cpp └── test_cpu.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/.gitignore -------------------------------------------------------------------------------- /FPGA for software developers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/FPGA for software developers.pdf -------------------------------------------------------------------------------- /FPGA for software developers.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/FPGA for software developers.pptx -------------------------------------------------------------------------------- /Go_Board_Constraints.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/Go_Board_Constraints.pcf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/README.md -------------------------------------------------------------------------------- /alu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/alu.v -------------------------------------------------------------------------------- /apio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/apio.ini -------------------------------------------------------------------------------- /boot.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/boot.mem -------------------------------------------------------------------------------- /catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/catch.hpp -------------------------------------------------------------------------------- /copy_boot_mem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/copy_boot_mem.sh -------------------------------------------------------------------------------- /grom8.core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom8.core -------------------------------------------------------------------------------- /grom8.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom8.ice -------------------------------------------------------------------------------- /grom8.vlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom8.vlt -------------------------------------------------------------------------------- /grom8_cpu.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom8_cpu.ice -------------------------------------------------------------------------------- /grom_computer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom_computer.v -------------------------------------------------------------------------------- /grom_computer_tb.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom_computer_tb.gtkw -------------------------------------------------------------------------------- /grom_computer_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom_computer_tb.v -------------------------------------------------------------------------------- /grom_cpu.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom_cpu.v -------------------------------------------------------------------------------- /grom_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/grom_top.v -------------------------------------------------------------------------------- /hex_to_2_x_7seg.ice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/hex_to_2_x_7seg.ice -------------------------------------------------------------------------------- /hex_to_7seg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/hex_to_7seg.v -------------------------------------------------------------------------------- /instruction_set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/instruction_set.txt -------------------------------------------------------------------------------- /ram_memory.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/ram_memory.v -------------------------------------------------------------------------------- /test_alu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/test_alu.cpp -------------------------------------------------------------------------------- /test_comp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/test_comp.cpp -------------------------------------------------------------------------------- /test_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmicko/grom8/HEAD/test_cpu.cpp --------------------------------------------------------------------------------