From fec3d3d68ebb27adaec53839c402229231b2cb38 Mon Sep 17 00:00:00 2001 From: uvok Date: Tue, 6 Jan 2026 11:58:16 +0100 Subject: include guards --- nandgame/counter.sv | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'nandgame/counter.sv') diff --git a/nandgame/counter.sv b/nandgame/counter.sv index 988d123..90afa9b 100644 --- a/nandgame/counter.sv +++ b/nandgame/counter.sv @@ -2,6 +2,9 @@ `timescale 1us/1us +`ifndef NANDGAME_COUNTER +`define NANDGAME_COUNTER + module counter #( parameter DATA_WIDTH = 16 ) ( @@ -49,3 +52,5 @@ end assign counter_out = counter_int; endmodule + +`endif -- cgit v1.2.3