1
0

Stub out debug module, rather than leaving it floating

This commit is contained in:
Andrew Waterman
2016-04-30 22:36:06 -07:00
parent 46bbbba5e6
commit c4d2d29e80
3 changed files with 6 additions and 2 deletions

View File

@ -218,6 +218,10 @@ class Uncore(implicit val p: Parameters) extends Module
val bootROMAddr = ioAddrHashMap("int:bootrom")
bootROM.io <> mmioNetwork.io.out(bootROMAddr.port)
val debugModule = Module(new ROMSlave(Seq())) // TODO
val debugModuleAddr = ioAddrHashMap("int:debug")
debugModule.io <> mmioNetwork.io.out(debugModuleAddr.port)
TopUtils.connectTilelinkNasti(io.mmio, mmioNetwork.io.out(ioAddrHashMap("ext").port))
}
}