mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 05:37:16 -04:00
Fix port size mis-match
This commit is contained in:
parent
27011d48c2
commit
8e5f93c6d8
2 changed files with 2 additions and 1 deletions
|
@ -46,7 +46,7 @@ module lsu #(
|
|||
output logic fetch_err_o, // Instruction fetch interface
|
||||
input logic [63:0] fetch_vaddr_i, // Instruction fetch interface
|
||||
output logic [31:0] fetch_rdata_o, // Instruction fetch interface
|
||||
output logic fetch_ex_o, // Instruction fetch interface
|
||||
output exception fetch_ex_o, // Instruction fetch interface
|
||||
|
||||
input priv_lvl_t priv_lvl_i, // From CSR register file
|
||||
input logic flag_pum_i, // From CSR register file
|
||||
|
|
|
@ -210,6 +210,7 @@ module mmu #(
|
|||
fetch_gnt_o = instr_if_data_gnt_i;
|
||||
fetch_err_o = 1'b0;
|
||||
ierr_valid_n = 1'b0;
|
||||
fetch_ex_o = '{default: 0};
|
||||
|
||||
// MMU enabled: address from TLB, request delayed until hit. Error when TLB
|
||||
// hit and no access right or TLB hit and translated address not valid (e.g.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue