提交 76f36e4b 编写于 作者: Z zoujr

Fixed comile error

上级 d8c0fce2
......@@ -45,7 +45,7 @@ class Ibuffer extends XSModule {
val full = head_ptr === tail_ptr && last_enq
val empty = head_ptr === tail_ptr && !last_enq
val enqValid = !io.flush && io.in.valid && !full && !ibuf_valid(tail_ptr + (FetchWidth*2).U)
val deqValid = !io.flush && !empty && io.out.map(x => x.ready).reduce(_||_)
val deqValid = !io.flush && !empty //&& io.out.map(_.ready).reduce(_||_)
io.in.ready := enqValid
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册