mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-22 21:17:46 -04:00
Fix immu address corruption
This commit is contained in:
parent
31f2cf64b4
commit
01fde601a0
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ module mmu
|
|||
|
||||
//Page Table addresses
|
||||
always_ff @ (posedge clk) begin
|
||||
if (state[IDLE] | l1_response.data_valid) begin
|
||||
if (state[IDLE] | (l1_response.data_valid & ~discard_data)) begin
|
||||
if (state[IDLE])
|
||||
l1_request.addr <= {mmu.satp_ppn[19:0], mmu.virtual_address[31:22], 2'b00};
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue