Skip to content

Commit

Permalink
Fix parameter transmission
Browse files Browse the repository at this point in the history
  • Loading branch information
cathales authored and JeanRochCoulon committed Aug 21, 2023
1 parent bcd19ce commit 8bb589f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/frontend/frontend.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 8bb589f

Please sign in to comment.