mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2025-01-15 22:29:41 +00:00
3a0229555b
removed redundant code from v6502.cpp; moved relevant code from v6502.cpp to addressbus.h added crude Makefile fix other compilation errors
12 lines
145 B
Makefile
12 lines
145 B
Makefile
all: v6502
|
|
|
|
v6502: v6502.o cpu.o
|
|
g++ $^ -o $@
|
|
|
|
v6502.o: v6502.cpp cpu.h addressbus.h
|
|
|
|
cpu.o: cpu.cpp cpu.h addressbus.h nodes.h
|
|
|
|
clean:
|
|
rm *.o
|