1
0
Fork 0

pbus: turn down overkill buffering between PBus and SBus

This commit is contained in:
Megan Wachs 2017-08-30 19:23:18 -07:00 committed by Wesley W. Terpstra
parent c353f68dc0
commit 94f06dc85c
1 changed files with 1 additions and 1 deletions

View File

@ -48,5 +48,5 @@ trait HasPeripheryBus extends HasSystemBus {
val pbus = new PeripheryBus(pbusParams)
// The peripheryBus hangs off of systemBus; here we convert TL-UH -> TL-UL
pbus.fromSystemBus := sbus.toPeripheryBus(nBuffers = 4)
pbus.fromSystemBus := sbus.toPeripheryBus(nBuffers = 1)
}