turn off DEBUG_SUPPORTED as default

This commit is contained in:
James Stine 2024-06-04 14:59:44 -05:00
parent be0199fb3c
commit 07f010fb82

View File

@ -17,7 +17,7 @@ localparam ASID_BASE = (XLEN==32 ? 32'd22 : 32'd44);
localparam ASID_BITS = (XLEN==32 ? 32'd9 : 32'd16); localparam ASID_BITS = (XLEN==32 ? 32'd9 : 32'd16);
// Debug Module implemented // Debug Module implemented
localparam logic DEBUG_SUPPORTED = 1'b1; localparam logic DEBUG_SUPPORTED = 1'b0;
// constants to check SATP_MODE against // constants to check SATP_MODE against
// defined in Table 4.3 of the privileged spec // defined in Table 4.3 of the privileged spec