refactor: add top-level Emu6502 class

This commit is contained in:
Christopher Mosher
2013-12-15 01:13:44 -05:00
parent 84715444c9
commit 55df84b305
10 changed files with 114 additions and 45 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
CXXFLAGS=-g -std=c++11 -Wall -O3
DOXYGEN=doxygen
SRCS = v6502.cpp SegmentCache.cpp Common.cpp TransNetwork.cpp Trace.cpp Circuit.cpp StateCalculator.cpp Cpu6502.cpp Cpu6502Helper.cpp
SRCS = v6502.cpp Emu6502.cpp SegmentCache.cpp Common.cpp TransNetwork.cpp Trace.cpp Circuit.cpp StateCalculator.cpp Cpu6502.cpp Cpu6502Helper.cpp
OBJS = $(SRCS:.cpp=.o)
DEPS = $(SRCS:.cpp=.d)