List supported configs

Address PR comments
This commit is contained in:
Ella Schwarz
2021-09-29 22:34:28 -07:00
parent 5ffc100323
commit 665ff79bb2
3 changed files with 5 additions and 4 deletions

View File

@@ -101,7 +101,7 @@ case $1 in
run_asm ${mapping[$1]}
;;
chipyard-ibex)
make run-binary-fast -C $LOCAL_SIM_DIR ${mapping[$1]} BINARY=$RISCV/riscv64-unknown-elf/share/riscv-tests/benchmarks/multiply.riscv
run_bmark ${mapping[$1]}
;;
chipyard-nvdla)
make -C $LOCAL_CHIPYARD_DIR/tests

2
.gitmodules vendored
View File

@@ -142,4 +142,4 @@
url = https://github.com/ucb-bar/rocket-dsp-utils
[submodule "generators/ibex"]
path = generators/ibex
url = https://github.com/schwarz-em/ibex-wrapper
url = https://github.com/ucb-bar/ibex-wrapper

View File

@@ -8,7 +8,8 @@ import freechips.rocketchip.config.{Config}
// Ibex Configs
// ---------------------
// Multi-core and 32b heterogeneous configs are supported
class IbexConfig extends Config(
new chipyard.config.WithBootROM ++ // Ibex reset vector is at 0x80
new ibex.WithNIbexCores(1) ++ // single Ibex core
new ibex.WithNIbexCores(1) ++
new chipyard.config.AbstractConfig)