mirror of
https://github.com/openhwgroup/cvw.git
synced 2025-04-22 21:08:08 -04:00
Fixted syntax error in exclusion. Arbitrarily picked -e 1; fix if this isn't right
This commit is contained in:
parent
69cc0b8bf3
commit
063e41806e
1 changed files with 1 additions and 1 deletions
2
src/cache/cachefsm.sv
vendored
2
src/cache/cachefsm.sv
vendored
|
@ -159,7 +159,7 @@ module cachefsm #(parameter READ_ONLY_CACHE = 0) (
|
|||
assign SelFlush = (CurrState == STATE_READY & FlushCache) |
|
||||
(CurrState == STATE_FLUSH) |
|
||||
(CurrState == STATE_FLUSH_WRITEBACK);
|
||||
// coverage off -item e -fecexprrow 1
|
||||
// coverage off -item e 1 -fecexprrow 1
|
||||
// (state is always FLUSH_WRITEBACK when FlushWayFlag & CacheBusAck)
|
||||
assign FlushAdrCntEn = (CurrState == STATE_FLUSH_WRITEBACK & FlushWayFlag & CacheBusAck) |
|
||||
(CurrState == STATE_FLUSH & FlushWayFlag & ~LineDirty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue