Killer Instinct support (disabled by default as it isn't going to work with earlier GCC) - enable in makefile to use

This commit is contained in:
Barry Harris 2015-05-08 11:39:03 +00:00
parent 90e47234ce
commit 157390bc5c
2 changed files with 14 additions and 2 deletions

View File

@ -36,6 +36,9 @@ INCLUDE_7Z_SUPPORT = 1
# Include Toaplan sound sample hacks for games without MCU dumps
TOAPLAN_SOUND_SAMPLES_HACK = 1
# Include Killer Instinct driver (and associated files) - requires C++11 support
#INCLUDE_KILLER_INSTINCT = 1
# Include symbols and other debug information in the executable
#SYMBOL = 1

View File

@ -76,6 +76,10 @@ drvobj = d_dodonpachi.o d_donpachi.o d_esprade.o d_feversos.o d_gaia.o d_guwang
d_coleco.o \
\
d_sg1000.o
ifdef INCLUDE_KILLER_INSTINCT
drvobj += d_kinst.o
endif
depobj := $(drvobj) \
\
@ -134,9 +138,14 @@ depobj := $(drvobj) \
snes_65816.o snes_io.o snes_main.o snes_ppu.o snes_spc700.o
ifdef DEBUG
depobj += m68kdasm.o
depobj += m68kdasm.o
endif
ifdef BUILD_X86_ASM
autobj += burn_sound_a.o
autobj += burn_sound_a.o
endif
ifdef INCLUDE_KILLER_INSTINCT
alldir += burn/drv/midway cpu/adsp2100 cpu/mips3 cpu/mips3/x64
depobj += dcs2k.o ide.o adsp2100.o cop0.o cop1.o mips3.o adsp2100_intf.o mips3_intf.o
endif