1
0
Fork 0

FrontBus: automatically disappear when not used

This commit is contained in:
Wesley W. Terpstra 2017-11-30 16:13:56 -08:00
parent e489c4226e
commit 93c8010aca
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class FrontBus(params: FrontBusParams)(implicit p: Parameters) extends TLBusWrap
def fromCoherentChip: TLInwardNode = inwardNode
def toSystemBus : TLOutwardNode = outwardBufNode
def toSystemBus : TLOutwardNode = TLBuffer(params.slaveBuffering) :=* xbar.node
}
@ -51,5 +51,5 @@ trait HasFrontBus extends HasSystemBus {
val fbus = LazyModule(new FrontBus(frontbusParams))
FlipRendering { implicit p => sbus.fromFrontBus := fbus.toSystemBus }
FlipRendering { implicit p => sbus.fromFrontBus :=* fbus.toSystemBus }
}