1
0
Fork 0

add missing "otherwise"

This commit is contained in:
Andrew Waterman 2012-01-21 20:13:15 -08:00
parent 97f0852b17
commit 31c56228e2
2 changed files with 13 additions and 10 deletions

View File

@ -227,7 +227,9 @@ class MSHR(id: Int) extends Component {
when (io.meta_req.valid && io.meta_req.ready) {
valid <== Bool(false)
}
dirty <== next_dirty
otherwise {
dirty <== next_dirty
}
io.idx_match := valid && (idx_ === io.req_idx)
io.idx := idx_

View File

@ -27,12 +27,6 @@ class queueCtrl(entries: Int) extends Component
val enq_ptr = Reg(width = addr_sz, resetVal = UFix(0, addr_sz));
val deq_ptr = Reg(width = addr_sz, resetVal = UFix(0, addr_sz));
val full = Reg(width = 1, resetVal = Bool(false));
when (io.q_reset) {
enq_ptr <== UFix(0, addr_sz);
deq_ptr <== UFix(0, addr_sz);
full <== Bool(false);
}
io.waddr := enq_ptr;
io.raddr := deq_ptr;
@ -76,9 +70,16 @@ class queueCtrl(entries: Int) extends Component
Mux(do_deq && full, Bool(false),
full));
enq_ptr <== enq_ptr_next;
deq_ptr <== deq_ptr_next;
full <== full_next;
when (io.q_reset) {
enq_ptr <== UFix(0, addr_sz);
deq_ptr <== UFix(0, addr_sz);
full <== Bool(false);
}
otherwise {
enq_ptr <== enq_ptr_next;
deq_ptr <== deq_ptr_next;
full <== full_next;
}
}
class ioQueueSimplePF[T <: Data]()(data: => T) extends Bundle