Skip to content

Commit 9c3be66

Browse files
authored
Merge pull request #48 from pulp-platform/parameter-propagation
Fix PROB_STALL parameter type.
2 parents aee2987 + a5b6b00 commit 9c3be66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

target/sim/src/redmule_tb.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module redmule_tb
1616
parameter TA = 0.2ns, // application time
1717
parameter TT = 0.8ns, // test time
1818
parameter logic UseXif = 1'b0,
19-
parameter int unsigned PROB_STALL = 0
19+
parameter real PROB_STALL = 0
2020
)(
2121
input logic clk_i,
2222
input logic rst_ni,

target/sim/src/redmule_tb_wrap.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import redmule_pkg::*;
1414
localparam TA = 0.2ns; // application time
1515
localparam TT = 0.8ns; // test time
1616
parameter logic UseXif = 1'b0; // Wether to use CV32E40P/X (passed through the Makefile)
17-
parameter int unsigned PROB_STALL = 0; // Dummy memories stall probability (passed through the Makefile)
17+
parameter real PROB_STALL = 0; // Dummy memories stall probability (passed through the Makefile)
1818

1919
logic clk, rst_n, fetch_enable;
2020

0 commit comments

Comments
 (0)