diff options
| author | uvok | 2026-01-16 18:22:10 +0100 |
|---|---|---|
| committer | uvok | 2026-01-16 18:22:36 +0100 |
| commit | 47c26f27b8be4c6c22ed81f701f1b25072bb3341 (patch) | |
| tree | b4baf08315beb28bcb00c7075413e2462db185af /playground/debounce.v | |
| parent | dd222c33ae00eb9312cb34610efd886dc565c159 (diff) | |
(System)Verilog: Be explicit about wire/logic
Diffstat (limited to 'playground/debounce.v')
| -rw-r--r-- | playground/debounce.v | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/playground/debounce.v b/playground/debounce.v index 33dc22e..4c68e2e 100644 --- a/playground/debounce.v +++ b/playground/debounce.v @@ -1,9 +1,9 @@ `timescale 1us/1us module debounce ( - input rst_i, - input clk_i, - input signal_i, + input wire rst_i, + input wire clk_i, + input wire signal_i, output reg signal_o ); |
