We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20f2250 commit 6c4b9fcCopy full SHA for 6c4b9fc
1 file changed
rtl/fazyrv_top.sv
@@ -319,6 +319,7 @@ endgenerate
319
320
// Check parameters
321
//
322
+/* verilator lint_off WIDTHEXPAND */
323
localparam CHUNKSIZE_OK = (CHUNKSIZE==1) || (CHUNKSIZE==2) ||
324
(CHUNKSIZE==4) || (CHUNKSIZE==8);
325
@@ -333,5 +334,6 @@ localparam MEMDLY1_OK = (MEMDLY1==0) || (MEMDLY1==1);
333
334
if (!(CHUNKSIZE_OK && CONF_OK && RFTYPE_OK && MEMDLY1_OK)) begin
335
$fatal(1, "At least one of the parameters is not valid.");
336
end
337
+/* verilator lint_on WIDTHEXPAND */
338
339
endmodule
0 commit comments