fixed unsued parameters warnings

This commit is contained in:
Blaise Tine
2021-03-02 16:20:36 -05:00
parent 88d5cd4979
commit fdfc8e9605
35 changed files with 94 additions and 73 deletions

View File

@@ -33,6 +33,10 @@
/* verilator lint_on DECLFILENAME */ \
/* verilator lint_on IMPLICIT */
`define UNUSED_PARAM(x) /* verilator lint_off UNUSED */ \
localparam __``x = x; \
/* verilator lint_on UNUSED */
`define UNUSED_VAR(x) always @(x) begin end
`define UNUSED_PIN(x) /* verilator lint_off PINCONNECTEMPTY */ \