aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authoraliaspider2014-11-02 11:44:50 +0100
committeraliaspider2014-11-02 11:44:50 +0100
commit3564bfe8134ce6e1294a59212484e9ee487ab4f5 (patch)
tree40377a14f396f377946c7ee4dad4d22fa470d441 /Makefile.common
parent4446c4cbf34cb8c16d255d2a498245a97dcdadc3 (diff)
downloadsnes9x2005-3564bfe8134ce6e1294a59212484e9ee487ab4f5.tar.gz
snes9x2005-3564bfe8134ce6e1294a59212484e9ee487ab4f5.tar.bz2
snes9x2005-3564bfe8134ce6e1294a59212484e9ee487ab4f5.zip
start hooking up blargg's apu implementation to use as a reference.
(not yet working)
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common
index 1e8237c..9dac061 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -3,7 +3,8 @@ INCFLAGS := -I$(CORE_DIR) -I$(LIBRETRO_DIR)
ifeq ($(HAVE_GRIFFIN), 1)
SOURCES_C := $(CORE_DIR)/catsfc_griffin.c
SOURCES_C += $(CORE_DIR)/sa1.c \
- $(CORE_DIR)/sa1cpu.c
+ $(CORE_DIR)/sa1cpu.c \
+ $(CORE_DIR)/apu_blargg.c
else
SOURCES_C := \
$(CORE_DIR)/apu.c \
@@ -38,6 +39,8 @@ SOURCES_C := \
$(CORE_DIR)/spc700.c \
$(CORE_DIR)/spc7110.c \
$(CORE_DIR)/srtc.c \
- $(CORE_DIR)/tile.c
+ $(CORE_DIR)/tile.c \
+ $(CORE_DIR)/apu_blargg.c
+
SOURCES_C += $(LIBRETRO_DIR)/libretro.c
endif