From fdaf2925f1353b07cd957ae47b0e6793648559be Mon Sep 17 00:00:00 2001 From: João Silva Date: Sun, 13 Aug 2017 06:02:24 +0100 Subject: Copied SPC7110 emulation from snes9x_3ds. --- Makefile.common | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile.common') diff --git a/Makefile.common b/Makefile.common index e62fabb..9970830 100644 --- a/Makefile.common +++ b/Makefile.common @@ -40,6 +40,7 @@ SOURCES_C := \ $(CORE_DIR)/soundux.c \ $(CORE_DIR)/spc700.c \ $(CORE_DIR)/spc7110.c \ + $(CORE_DIR)/spc7110dec.c \ $(CORE_DIR)/srtc.c \ $(CORE_DIR)/tile.c \ $(CORE_DIR)/apu_blargg.c \ -- cgit v1.2.3 From 5e450063fbe25926ae50d569c285db428055318a Mon Sep 17 00:00:00 2001 From: João Silva Date: Mon, 14 Aug 2017 06:03:05 +0100 Subject: Deleted several unused variables, code and files. --- Makefile.common | 8 -------- 1 file changed, 8 deletions(-) (limited to 'Makefile.common') diff --git a/Makefile.common b/Makefile.common index 9970830..21e319e 100644 --- a/Makefile.common +++ b/Makefile.common @@ -2,13 +2,6 @@ LIBRETRO_COMM_DIR := $(LIBRETRO_DIR)/libretro-common INCFLAGS := -I$(CORE_DIR) -I$(LIBRETRO_DIR) -I$(LIBRETRO_COMM_DIR)/include -ifeq ($(HAVE_GRIFFIN), 1) -SOURCES_C := $(CORE_DIR)/catsfc_griffin.c -SOURCES_C += \ - $(CORE_DIR)/sa1.c \ - $(CORE_DIR)/sa1cpu.c \ - $(CORE_DIR)/apu_blargg.c -else SOURCES_C := \ $(CORE_DIR)/apu.c \ $(CORE_DIR)/c4.c \ @@ -45,7 +38,6 @@ SOURCES_C := \ $(CORE_DIR)/tile.c \ $(CORE_DIR)/apu_blargg.c \ $(LIBRETRO_DIR)/libretro.c -endif ifeq ($(USE_BLARGG_APU),1) FLAGS += -DUSE_BLARGG_APU -- cgit v1.2.3