1
0
Fork 0
Go to file
Yunsup Lee 7734285507 forgot to comment out hwacha 2014-09-01 09:01:36 -07:00
chisel@c04dd5fae8 use fpga backend for fpga 2014-08-26 15:56:27 -07:00
csrc update for rocket-chip release 2014-08-31 20:26:55 -07:00
dramsim2@0b3ee6799a integrate updated rocket/uncore 2012-10-18 17:51:41 -07:00
emulator update for rocket-chip release 2014-08-31 20:26:55 -07:00
fsim update for rocket-chip release 2014-08-31 20:26:55 -07:00
hardfloat@1c8a6e6815 update for rocket-chip release 2014-08-31 20:26:55 -07:00
project update for rocket-chip release 2014-08-31 20:26:55 -07:00
riscv-tools@94d919625a update for rocket-chip release 2014-08-31 20:26:55 -07:00
rocket@7493d4bb10 Point rocket/ to rocket-staging repo 2014-08-19 14:20:15 -07:00
src/main/scala forgot to comment out hwacha 2014-09-01 09:01:36 -07:00
uncore@354e1ea44a added l2 to fpga 2014-08-20 15:41:07 -07:00
vsim update for rocket-chip release 2014-08-31 20:26:55 -07:00
vsrc update for rocket-chip release 2014-08-31 20:26:55 -07:00
.gitignore update gitignore 2014-09-01 08:59:59 -07:00
.gitmodules Point rocket/ to rocket-staging repo 2014-08-19 14:20:15 -07:00
Makefrag update for rocket-chip release 2014-08-31 20:26:55 -07:00
README.md update README 2014-08-31 20:57:16 -07:00
sbt-launch.jar Bump scala to 2.10.2, sbt to 0.13-RC2, including new launcher. Upgrade reflection in network.scala to 2.10 lib. Constants now obtained from subproject package objects. Give network its own file. 2013-07-24 23:28:43 -07:00

README.md

Quick and dirty instructions:

Checkout The Code

$ git submodule update --init --recursive

Building The Toolchain

To build RISC-V ISA simulator, frontend server, proxy kernel and newlib based GNU toolchain:

$ export RISCV=/path/to/riscv/toolchain/installation
$ cd riscv-tools
$ ./build.sh

Building The Project

To build the C simulator:

$ cd emulator
$ make

To build the VCS simulator:

$ cd vsim
$ make

in either case, you can run a set of assembly tests or simple benchmarks:

$ make run-asm-tests
$ make run-vecasm-tests
$ make run-vecasm-timer-tests
$ make run-bmarks-test

To build a C simulator that is capable of VCD waveform generation:

$ cd emulator
$ make emulator-debug

(note that you must have run make emulator at least once before running make emulator-debug)

And to run the assembly tests on the C simulator and generate waveforms:

$ make run-asm-tests-debug
$ make run-vecasm-tests-debug
$ make run-vecasm-timer-tests-debug
$ make run-bmarks-test-debug

To get FPGA-synthesizable verilog (output will be in fsim/generated-src):

$ cd fsim
$ make

Updating To A Newer Version Of Chisel

To grab a newer version of chisel:

$ git submodule update --init
$ cd chisel
$ git pull origin master