Skip to content

Commit 9286fa0

Browse files
committed
[Lint]: Add string type in definition to solve linting error
1 parent 1d9586b commit 9286fa0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mem_multibank_pwrgate.sv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ module mem_multibank_pwrgate #(
2626
parameter int unsigned NumPorts = 32'd2, // Number of read and write ports
2727
parameter int unsigned Latency = 32'd1, // Latency when the read data is available
2828
parameter int unsigned NumLogicBanks = 32'd1, // Logic bank for Power Management
29-
parameter SimInit = "none", // Simulation initialization
29+
parameter string SimInit = "none", // Simulation initialization
3030
parameter bit PrintSimCfg = 1'b0, // Print configuration
31-
parameter ImplKey = "none", // Reference to specific implementation
31+
parameter string ImplKey = "none", // Reference to specific implementation
3232
// DEPENDENT PARAMETERS, DO NOT OVERWRITE!
3333
parameter int unsigned AddrWidth = (NumWords > 32'd1) ? $clog2(NumWords) : 32'd1,
3434
parameter int unsigned BeWidth = (DataWidth + ByteWidth - 32'd1) / ByteWidth, // ceil_div

0 commit comments

Comments
 (0)