1
0

Add TLBuffers on the L1 backends and blind exit points (#513)

* [coreplex] add TLBuffers on the exit points from the Tile and Coreplex
* [config] WithBootROMFile
This commit is contained in:
Henry Cook
2017-01-17 11:57:23 -08:00
committed by GitHub
parent 74b6a8d02b
commit 9a6634cd40
5 changed files with 15 additions and 8 deletions

View File

@@ -212,3 +212,7 @@ class WithoutFPU extends Config((site, here, up) => {
class WithFPUWithoutDivSqrt extends Config((site, here, up) => {
case FPUKey => Some(FPUConfig(divSqrt = false))
})
class WithBootROMFile(bootROMFile: String) extends Config((site, here, up) => {
case BootROMFile => bootROMFile
})