From 2be99ab96106930920264c1124436f999aebf8b4 Mon Sep 17 00:00:00 2001 From: uvok Date: Sat, 27 Dec 2025 18:33:13 +0100 Subject: lint testbenches param instantiation --- debounce.tb.v | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'debounce.tb.v') diff --git a/debounce.tb.v b/debounce.tb.v index df3e5e4..6bf17fa 100644 --- a/debounce.tb.v +++ b/debounce.tb.v @@ -10,13 +10,12 @@ wire signal_o; integer i = 0; -debounce uut( +debounce #(.STABLE_PERIOD(5)) uut( .rst_i(rst_i), .clk_i(clk_i), .signal_i(signal_i), .signal_o(signal_o) ); -defparam uut.STABLE_PERIOD = 5; initial begin $dumpfile("debounce.lxt2"); $dumpvars(); -- cgit v1.2.3