libretro.cpp becomes the public interface instead of mednafen core/corename.cpp -

alternative frontends that don't implement the libretro API directly will instead
have to use libretro as a glue layer for their own API
This commit is contained in:
twinaphex 2014-06-15 19:20:33 +02:00
parent aa42414fb1
commit 363e4b492a
4 changed files with 2083 additions and 2289 deletions

View File

@ -43,8 +43,7 @@ endif
NEED_THREADING = 1
CORE_DEFINE := -DWANT_PSX_EMU
CORE_DIR := $(MEDNAFEN_DIR)/psx
CORE_SOURCES := $(CORE_DIR)/psx.cpp \
$(CORE_DIR)/irq.cpp \
CORE_SOURCES := $(CORE_DIR)/irq.cpp \
$(CORE_DIR)/timer.cpp \
$(CORE_DIR)/dma.cpp \
$(CORE_DIR)/frontio.cpp \

View File

@ -48,8 +48,7 @@ ifeq ($(core), psx)
NEED_TREMOR = 1
CORE_DEFINE := -DWANT_PSX_EMU
CORE_DIR := $(MEDNAFEN_DIR)/psx
CORE_SOURCES := $(CORE_DIR)/psx.cpp \
$(CORE_DIR)/irq.cpp \
CORE_SOURCES := $(CORE_DIR)/irq.cpp \
$(CORE_DIR)/timer.cpp \
$(CORE_DIR)/dma.cpp \
$(CORE_DIR)/frontio.cpp \

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff