Skip to content

Commit

Permalink
[rtl] fix connect for simpleAccessPorts.aw
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li committed Jul 17, 2024
1 parent 3893c36 commit cff1cbe
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 @@ -404,7 +404,7 @@ class LSU(param: LSUParameter) extends Module {
simpleSourceQueue.io.deq.ready := simpleAccessPorts.r.fire

val simpleDataQueue: Queue[SimpleMemWrite] = Module(new Queue(chiselTypeOf(otherUnit.memWriteRequest.bits), 2))
simpleAccessPorts.aw.valid := storeUnit.memRequest.valid && dataQueue.io.enq.ready
simpleAccessPorts.aw.valid := otherUnit.memWriteRequest.valid && dataQueue.io.enq.ready
simpleAccessPorts.aw.bits <> DontCare
simpleAccessPorts.aw.bits.len := 0.U
simpleAccessPorts.aw.bits.burst := 1.U //INCR
Expand Down

0 comments on commit cff1cbe

Please sign in to comment.