summaryrefslogtreecommitdiff
path: root/nandgame/computer.sv
diff options
context:
space:
mode:
authoruvok2026-01-16 18:22:10 +0100
committeruvok2026-01-16 18:22:36 +0100
commit47c26f27b8be4c6c22ed81f701f1b25072bb3341 (patch)
treeb4baf08315beb28bcb00c7075413e2462db185af /nandgame/computer.sv
parentdd222c33ae00eb9312cb34610efd886dc565c159 (diff)
(System)Verilog: Be explicit about wire/logic
Diffstat (limited to 'nandgame/computer.sv')
-rw-r--r--nandgame/computer.sv4
1 files changed, 2 insertions, 2 deletions
diff --git a/nandgame/computer.sv b/nandgame/computer.sv
index 5c2127f..3286bfe 100644
--- a/nandgame/computer.sv
+++ b/nandgame/computer.sv
@@ -8,8 +8,8 @@
`include "counter.sv"
module computer (
- input clk_in,
- output halt
+ input wire clk_in,
+ output wire halt
);
wire nclk_int;