blob: 92f2fe093d81f53d624218c30ba7ff10fe1ee2f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# RISCV CPU
An attempt at building a simple RISCV CPU in verilog.
## Build
* `make all` to synthesize, place and route the design and to generate the bitstream.
* `make program` to upload the bitstream to the FPGA.
* `make flash` to flash the bitsream to the FPGA.
* `make tests` to generate testvec files
* `make simulate` to run the testbench (sim/testbench.v).
* `make wave` to view the simulation in GTKWave.
* `make clean` to clean build files.
|