mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-22 13:17:41 -04:00
cache_ctrl: Do not accept new request during flush (#1677)
This commit is contained in:
parent
abf55c01af
commit
8ef0d66d65
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ module cache_ctrl
|
|||
req_port_o.data_rvalid = ~mem_req_q.killed;
|
||||
req_port_o.data_rdata = critical_word_i;
|
||||
// we can make another request
|
||||
if (req_port_i.data_req) begin
|
||||
if (req_port_i.data_req && !flush_i) begin
|
||||
// save index, be and we
|
||||
mem_req_d.index = req_port_i.address_index;
|
||||
mem_req_d.id = req_port_i.data_id;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue