From b4d000bb77f53b30825a96b6ab03301326a8ce4c Mon Sep 17 00:00:00 2001 From: Nils Wistoff Date: Wed, 23 Oct 2024 15:12:17 +1100 Subject: [PATCH] cv64a6_imafdch_sv39_wb_config: Fix undefined parameter (#2513) The parameter `CVA6ConfigTechnoCut` is undefined and causes elaboration errors. Align this with the other configurations and set it to constant `0`. --- core/include/cv64a6_imafdch_sv39_wb_config_pkg.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/cv64a6_imafdch_sv39_wb_config_pkg.sv b/core/include/cv64a6_imafdch_sv39_wb_config_pkg.sv index 7a05878ce6..0fd26e48bb 100644 --- a/core/include/cv64a6_imafdch_sv39_wb_config_pkg.sv +++ b/core/include/cv64a6_imafdch_sv39_wb_config_pkg.sv @@ -75,7 +75,7 @@ package cva6_config_pkg; localparam config_pkg::cva6_user_cfg_t cva6_cfg = '{ XLEN: unsigned'(CVA6ConfigXlen), FpgaEn: bit'(CVA6ConfigFpgaEn), - TechnoCut: bit'(CVA6ConfigTechnoCut), + TechnoCut: bit'(0), SuperscalarEn: bit'(0), NrCommitPorts: unsigned'(2), AxiAddrWidth: unsigned'(CVA6ConfigAxiAddrWidth),