Skip to content

Commit

Permalink
TLWidthWidget: one more fix for the port to chisel3
Browse files Browse the repository at this point in the history
  • Loading branch information
mwachs5 committed Feb 4, 2020
1 parent aa53d0e commit c0bb78b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/scala/tilelink/WidthWidget.scala
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ class TLWidthWidget(innerBeatBytes: Int)(implicit p: Parameters) extends LazyMod
if (edgeOut.manager.anySupportAcquireB && edgeIn.client.anySupportProbe) {
splice(edgeOut, out.b, edgeIn, in.b, sourceMap)
splice(edgeIn, in.c, edgeOut, out.c, sourceMap)
out.e <> in.e
out.e.valid := in.e.valid
out.e.bits := in.e.bits
in.e.ready := out.e.ready
} else {
in.b.valid := false.B
in.c.ready := true.B
Expand Down

0 comments on commit c0bb78b

Please sign in to comment.