Fix old request not being invalidated; end-to-end flow working

This commit is contained in:
Hansung Kim
2023-04-27 21:54:02 -07:00
parent b5b1a7da66
commit 16c8eb2ada

View File

@@ -221,7 +221,7 @@ class CoalShiftQueue[T <: Data](
io.queue.enq.ready := !valid(entries - 1)
// TODO: making this validAfterInv(0) might be useful for the arbiter
io.queue.deq.valid := valid(0)
io.queue.deq.valid := validAfterInv(0)
io.queue.deq.bits := elts.head
assert(!flow, "flow-through is not implemented")