diff options
Diffstat (limited to 'Cpu')
-rw-r--r-- | Cpu/Makefile | 16 | ||||
-rw-r--r-- | Cpu/cpu-mips.cpp | 0 | ||||
-rw-r--r-- | Cpu/cpu.cpp | 0 |
3 files changed, 16 insertions, 0 deletions
diff --git a/Cpu/Makefile b/Cpu/Makefile new file mode 100644 index 0000000..87835d6 --- /dev/null +++ b/Cpu/Makefile @@ -0,0 +1,16 @@ +TARGET = Cpu.a + +SRCS = \ +cpu.cpp \ +cpu-mips.cpp \ + +SPATH = + +CPPFLAGS = -I. -I../Database -I../Database/internals + +include ../Makefile.cfg + +$(TARGET): $(OBJS) + $(AR) $@ $^ + +-include $(DEPS) diff --git a/Cpu/cpu-mips.cpp b/Cpu/cpu-mips.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Cpu/cpu-mips.cpp diff --git a/Cpu/cpu.cpp b/Cpu/cpu.cpp new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Cpu/cpu.cpp |