mirror of
https://github.com/openhwgroup/cve2.git
synced 2025-04-23 21:47:20 -04:00
Pass through ICache-related parameters in compliance test
The RISC-V compliance toplevel needs to pass through the instruction cache-related parameters, which are set by the ibex configuration script.
This commit is contained in:
parent
7558ecc720
commit
adb5d0fd27
1 changed files with 4 additions and 0 deletions
|
@ -24,6 +24,8 @@ module ibex_riscv_compliance (
|
|||
parameter ibex_pkg::regfile_e RegFile = ibex_pkg::RegFileFF;
|
||||
parameter bit BranchTargetALU = 1'b0;
|
||||
parameter bit WritebackStage = 1'b0;
|
||||
parameter bit ICache = 1'b0;
|
||||
parameter bit ICacheECC = 1'b0;
|
||||
parameter bit BranchPredictor = 1'b0;
|
||||
|
||||
logic clk_sys, rst_sys_n;
|
||||
|
@ -120,6 +122,8 @@ module ibex_riscv_compliance (
|
|||
.RegFile (RegFile ),
|
||||
.BranchTargetALU (BranchTargetALU ),
|
||||
.WritebackStage (WritebackStage ),
|
||||
.ICache (ICache ),
|
||||
.ICacheECC (ICacheECC ),
|
||||
.BranchPredictor (BranchPredictor ),
|
||||
.DmHaltAddr (32'h00000000 ),
|
||||
.DmExceptionAddr (32'h00000000 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue