diff options
author | FreeArtMan <dos21h@gmail.com> | 2018-12-04 21:22:39 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2018-12-04 21:22:39 +0000 |
commit | 3e1eb700dd4fc8dc47772ff7942990e61dcde32e (patch) | |
tree | 18cc811e52e9da514cea531ec70c652250be8ccd /cpu8/cpu_code_reg/Makefile | |
parent | 7e00e4960af68e6c26104cca26cdf47f4f4095a7 (diff) | |
download | cpu8-3e1eb700dd4fc8dc47772ff7942990e61dcde32e.tar.gz cpu8-3e1eb700dd4fc8dc47772ff7942990e61dcde32e.zip |
Different versions of register d-flip-flop, sr-latch, all have issues, becouse of no delay, and cpu_code_reg implemented without gate logic
Diffstat (limited to 'cpu8/cpu_code_reg/Makefile')
-rw-r--r-- | cpu8/cpu_code_reg/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpu8/cpu_code_reg/Makefile b/cpu8/cpu_code_reg/Makefile new file mode 100644 index 0000000..e8c3514 --- /dev/null +++ b/cpu8/cpu_code_reg/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_code_reg + +make: + g++ $(PROJECT).cpp -I$(SYSTEMC_INC) -L$(SYSTEMC_LIB) -Wl,-rpath=$(SYSTEMC_LIB)\ + -o $(PROJECT) -lsystemc -lm + + + |