Skip to content

Commit

Permalink
[tests] fix lsu write probe.
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li committed Oct 18, 2024
1 parent c0ae947 commit 1a3e23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t1/src/lsu/LSU.scala
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ class LSU(param: LSUParameter) extends Module {
probeWire.slots(index).dataMask := write.io.enq.bits.data.mask
probeWire.slots(index).dataData := write.io.enq.bits.data.data
probeWire.slots(index).dataInstruction := write.io.enq.bits.data.instructionIndex
probeWire.slots(index).writeValid := write.io.enq.valid
probeWire.slots(index).writeValid := write.io.enq.fire
probeWire.slots(index).targetLane := OHToUInt(write.io.enq.bits.targetLane)
}
probeWire.reqEnq := reqEnq.asUInt
Expand Down

0 comments on commit 1a3e23f

Please sign in to comment.