Skip to content

Commit

Permalink
Fix extraction-width warnings in TL Error.scala
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 committed Apr 25, 2024
1 parent 7960fe8 commit 91a6038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/devices/tilelink/Error.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class TLError(params: DevNullParams, buffer: Boolean = true, beatBytes: Int = 4)

// ReleaseAck is not allowed to report failure
dc.bits.opcode := ReleaseAck
dc.bits.param := VecInit(toB, toN, toN)(c.bits.param)
dc.bits.param := VecInit(toB, toN, toN)(c.bits.param(1,0))
dc.bits.size := c.bits.size
dc.bits.source := c.bits.source
dc.bits.sink := 0.U
Expand Down

0 comments on commit 91a6038

Please sign in to comment.