Skip to content

Commit

Permalink
Fix RoCCCSRIO bidir (#3518)
Browse files Browse the repository at this point in the history
(cherry picked from commit b47fdf9)

Co-authored-by: Jerry Zhao <[email protected]>
  • Loading branch information
mergify[bot] and jerryz123 authored Nov 1, 2023
1 parent e377336 commit f11fb1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/tile/RocketTile.scala
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class RocketTileModuleImp(outer: RocketTile) extends BaseTileModuleImp(outer)
core.io.rocc.resp <> respArb.get.io.out
core.io.rocc.busy <> (cmdRouter.get.io.busy || outer.roccs.map(_.module.io.busy).reduce(_ || _))
core.io.rocc.interrupt := outer.roccs.map(_.module.io.interrupt).reduce(_ || _)
(core.io.rocc.csrs zip roccCSRIOs.flatten).foreach { t => t._2 := t._1 }
(core.io.rocc.csrs zip roccCSRIOs.flatten).foreach { t => t._2 <> t._1 }
} else {
// tie off
core.io.rocc.cmd.ready := false.B
Expand Down

0 comments on commit f11fb1a

Please sign in to comment.