This commit is contained in:
Ella Schwarz
2021-08-26 21:17:17 -07:00
parent 797f85c8af
commit f49a26fff8
2 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package chipyard
import chisel3._
import freechips.rocketchip.config.{Config}
// ---------------------
// Ibex Configs
// ---------------------
class IbexConfig extends Config(
new chipyard.config.WithBootROM ++ // Ibex reset vector is at 0x80
new ibex.WithNIbexCores(1) ++ // single Ibex core
new chipyard.config.AbstractConfig)