Skip to content

Commit

Permalink
fix: bad connection between ar channels
Browse files Browse the repository at this point in the history
  • Loading branch information
rewired-gh committed Jul 14, 2023
1 parent a3568c2 commit a054069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/amba/axi4/Fragmenter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class AXI4Fragmenter()(implicit p: Parameters) extends LazyModule
val in_w = Queue.irrevocable(in.w, 1, flow=true)

// AR flow control; super easy
Connectable.waiveUnmatched(out.ar.bits, in_ar.bits) match {
Connectable.waiveUnmatched(out.ar, in_ar) match {
case (lhs, rhs) => lhs :<>= rhs
}
out.ar.bits.echo(AXI4FragLast) := ar_last
Expand Down

0 comments on commit a054069

Please sign in to comment.