Skip to content

Commit

Permalink
cv64a6_imafdch_sv39_wb_config: Fix undefined parameter (#2513)
Browse files Browse the repository at this point in the history
The parameter `CVA6ConfigTechnoCut` is undefined and causes elaboration
errors. Align this with the other configurations and set it to constant `0`.
  • Loading branch information
niwis authored Oct 23, 2024
1 parent c1c2f9d commit b4d000b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/include/cv64a6_imafdch_sv39_wb_config_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit b4d000b

Please sign in to comment.