mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-19 11:54:46 -04:00
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`.
This commit is contained in:
parent
c1c2f9d922
commit
b4d000bb77
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Reference in a new issue