diff Makefile @ 25:fb14515266f4

Implemented timer and timer interrupts. Added get/setvbr instructions. Fixed assembler bug. Moved mnemonics into a separate source file
author Michael Pavone <pavone@retrodev.com>
date Thu, 31 Mar 2016 23:25:52 -0700
parents 4c9dbfa30a66
children c677507682e3
line wrap: on
line diff
--- a/Makefile	Thu Mar 31 00:07:37 2016 -0700
+++ b/Makefile	Thu Mar 31 23:25:52 2016 -0700
@@ -18,10 +18,10 @@
 $(TARGETDIR) : 
 	mkdir $(TARGETDIR)
 
-$(TARGETDIR)/s16 : $(TARGETDIR)/main.o $(TARGETDIR)/cpu.o $(TARGETDIR)/vdp.o $(TARGETDIR)/audio.o $(TARGETDIR)/system_sdl.o
+$(TARGETDIR)/s16 : $(TARGETDIR)/main.o $(TARGETDIR)/cpu.o $(TARGETDIR)/vdp.o $(TARGETDIR)/audio.o $(TARGETDIR)/timer.o $(TARGETDIR)/system_sdl.o 
 	$(CC) -o $@ $^ $(LDFLAGS)
 	
-$(TARGETDIR)/asm : $(TARGETDIR)/asm.o $(TARGETDIR)/cpu.o
+$(TARGETDIR)/asm : $(TARGETDIR)/asm.o $(TARGETDIR)/mnemonics.o
 		$(CC) -o $@ $^ $(LDFLAGS)
 
 $(TARGETDIR)/%.o : src/%.c