未验证 提交 45d6f9ad 编写于 作者: Z zhanglinjuan 提交者: GitHub

ErrorArray: optimize timing for read resp (#1670)

上级 d46eedc2
......@@ -95,7 +95,8 @@ class ErrorArray(readPorts: Int, writePorts: Int)(implicit p: Parameters) extend
io.read.zip(io.resp).foreach {
case (read, resp) =>
read.ready := true.B
resp := RegEnable(meta_array(read.bits.idx), read.valid)
// resp := RegEnable(meta_array(read.bits.idx), read.valid)
resp := meta_array(RegEnable(read.bits.idx, read.valid))
}
io.write.foreach {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册