fix missing config-shared.vh

This commit is contained in:
James Stine 2024-06-03 17:07:19 -05:00
parent 0bb6a8866a
commit 36c77af995

View File

@ -16,6 +16,9 @@ localparam SVMODE_BITS = (XLEN==32 ? 32'd1 : 32'd4);
localparam ASID_BASE = (XLEN==32 ? 32'd22 : 32'd44);
localparam ASID_BITS = (XLEN==32 ? 32'd9 : 32'd16);
// Debug Module implemented
localparam logic DEBUG_SUPPORTED = 1'b1;
// constants to check SATP_MODE against
// defined in Table 4.3 of the privileged spec
localparam NO_TRANSLATE = 4'd0;