From fec3d3d68ebb27adaec53839c402229231b2cb38 Mon Sep 17 00:00:00 2001 From: uvok Date: Tue, 6 Jan 2026 11:58:16 +0100 Subject: include guards --- nandgame/comb_mem.sv | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'nandgame/comb_mem.sv') diff --git a/nandgame/comb_mem.sv b/nandgame/comb_mem.sv index c7fda32..3a4af75 100644 --- a/nandgame/comb_mem.sv +++ b/nandgame/comb_mem.sv @@ -6,6 +6,9 @@ `include "../my_mem.v" +`ifndef COMB_MEM +`define COMB_MEM + module comb_mem #( parameter DATA_WIDTH = 16 ) ( @@ -61,3 +64,5 @@ always @(negedge clk_in) begin end endmodule + +`endif -- cgit v1.2.3