diff options
| author | uvok | 2026-01-06 11:58:16 +0100 |
|---|---|---|
| committer | uvok | 2026-01-06 11:58:16 +0100 |
| commit | fec3d3d68ebb27adaec53839c402229231b2cb38 (patch) | |
| tree | 5d34ecba07737cbbe938ffcb90c348f566956d51 /nandgame/counter.sv | |
| parent | aad3b7aa0732cf127b1a44ff956e9447cbf9afef (diff) | |
include guards
Diffstat (limited to 'nandgame/counter.sv')
| -rw-r--r-- | nandgame/counter.sv | 5 |
1 files changed, 5 insertions, 0 deletions
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 |
