diff options
| author | uvok | 2025-12-27 18:33:13 +0100 |
|---|---|---|
| committer | uvok | 2025-12-27 18:33:13 +0100 |
| commit | 2be99ab96106930920264c1124436f999aebf8b4 (patch) | |
| tree | 59871bad372254a4b17a809823d4818b405ac6b5 /debounce.tb.v | |
| parent | bf58d53166383e54a6f8937df6f9d06a1582b72d (diff) | |
lint testbenchesmain
param instantiation
Diffstat (limited to 'debounce.tb.v')
| -rw-r--r-- | debounce.tb.v | 3 |
1 files changed, 1 insertions, 2 deletions
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(); |
