From 3e1eb700dd4fc8dc47772ff7942990e61dcde32e Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Tue, 4 Dec 2018 21:22:39 +0000 Subject: Different versions of register d-flip-flop, sr-latch, all have issues, becouse of no delay, and cpu_code_reg implemented without gate logic --- cpu8/cpu_gatedlatch/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cpu8/cpu_gatedlatch/Makefile (limited to 'cpu8/cpu_gatedlatch/Makefile') diff --git a/cpu8/cpu_gatedlatch/Makefile b/cpu8/cpu_gatedlatch/Makefile new file mode 100644 index 0000000..8fa3701 --- /dev/null +++ b/cpu8/cpu_gatedlatch/Makefile @@ -0,0 +1,12 @@ +SYSTEMC_PATH=/home/fam/downloads/source/systemc/systemc-2.3.2 +SYSTEMC_INC=$(SYSTEMC_PATH)/src +SYSTEMC_LIB=$(SYSTEMC_PATH)/src/.libs + +PROJECT=cpu_gatedlatch + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm + + + -- cgit v1.2.3