From 8bb589f072964a45006165d9aabb32ab59ab24b1 Mon Sep 17 00:00:00 2001 From: ALLART Come Date: Mon, 21 Aug 2023 17:55:34 +0200 Subject: [PATCH] Fix parameter transmission --- core/frontend/frontend.sv | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/frontend/frontend.sv b/core/frontend/frontend.sv index 29eda538f1..dea5ca0813 100644 --- a/core/frontend/frontend.sv +++ b/core/frontend/frontend.sv @@ -400,6 +400,7 @@ module frontend import ariane_pkg::*; #( assign ras_predict = '0; end else begin : ras_gen ras #( + .CVA6Cfg ( CVA6Cfg ), .DEPTH ( ArianeCfg.RASDepth ) ) i_ras ( .clk_i, @@ -421,6 +422,7 @@ module frontend import ariane_pkg::*; #( assign btb_prediction = '0; end else begin : btb_gen btb #( + .CVA6Cfg ( CVA6Cfg ), .NR_ENTRIES ( ArianeCfg.BTBEntries ) ) i_btb ( .clk_i, @@ -437,6 +439,7 @@ module frontend import ariane_pkg::*; #( assign bht_prediction = '0; end else begin : bht_gen bht #( + .CVA6Cfg ( CVA6Cfg ), .NR_ENTRIES ( ArianeCfg.BHTEntries ) ) i_bht ( .clk_i,