Skip to content

Commit

Permalink
subsystem: dont drop buffers arg to TileSlavePortParams
Browse files Browse the repository at this point in the history
  • Loading branch information
hcook committed Jun 17, 2020
1 parent 0286604 commit a43a2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/subsystem/HasTiles.scala
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ case class TileSlavePortParams(
.map { bbbp =>
val blocker = LazyModule(new BasicBusBlocker(bbbp))
blockerBus.coupleTo("tile_slave_port_bus_blocker") { blocker.controlNode := TLFragmenter(blockerBus) := _ }
blocker.node
} .getOrElse { TLTempNode() }
blocker.node :*= TLBuffer(buffers)
} .getOrElse { TLBuffer(buffers) }
}
}

Expand Down

0 comments on commit a43a2af

Please sign in to comment.