├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── Makefile ├── fba.chm ├── gamelist-gx.txt ├── gamelist.txt ├── makefile.burn_rules ├── makefile.libretro ├── preset-example.zip ├── projectfiles └── libretro-android │ └── jni │ ├── Android.mk │ └── Application.mk ├── src ├── burn │ ├── bitswap.h │ ├── burn.cpp │ ├── burn.h │ ├── burn_memory.cpp │ ├── burn_sound.cpp │ ├── burn_sound.h │ ├── burnint.h │ ├── cheat.cpp │ ├── cheat.h │ ├── devices │ │ ├── eeprom.cpp │ │ └── eeprom.h │ ├── driver.h │ ├── drv │ │ ├── d_parent.cpp │ │ └── neogeo │ │ │ ├── d_neogeo.cpp │ │ │ ├── neo_decrypt.cpp │ │ │ ├── neo_palette.cpp │ │ │ ├── neo_run.cpp │ │ │ ├── neo_sprite.cpp │ │ │ ├── neo_sprite_render.h │ │ │ ├── neo_text.cpp │ │ │ ├── neo_text_render.h │ │ │ ├── neo_upd4990a.cpp │ │ │ ├── neogeo.cpp │ │ │ └── neogeo.h │ ├── dsihandler.S │ ├── load.cpp │ ├── snd │ │ ├── ay8910.c │ │ ├── ay8910.h │ │ ├── burn_ym2610.cpp │ │ ├── burn_ym2610.h │ │ ├── fm.c │ │ ├── fm.h │ │ ├── ymdeltat.c │ │ └── ymdeltat.h │ ├── state.h │ ├── stdfunc.h │ ├── timer.cpp │ ├── timer.h │ └── version.h ├── burner │ ├── burner.h │ ├── crypt.h │ ├── gameinp.h │ ├── ioapi.c │ ├── ioapi.h │ ├── libretro │ │ ├── burn_endian.h │ │ ├── burn_libretro_opts.h │ │ ├── burner_libretro.h │ │ ├── ctr │ │ │ └── burn_memory.cpp │ │ ├── libretro-common │ │ │ └── include │ │ │ │ ├── boolean.h │ │ │ │ ├── compat │ │ │ │ └── msvc │ │ │ │ │ └── stdint.h │ │ │ │ └── retro_inline.h │ │ ├── libretro.cpp │ │ ├── libretro.h │ │ ├── libretro_private.h │ │ ├── link.T │ │ ├── neocdlist.cpp │ │ ├── net.h │ │ ├── tchar.h │ │ ├── wii_progressbar.c │ │ ├── wii_progressbar.h │ │ ├── wii_vm.c │ │ └── wii_vm.h │ ├── neocdlist.h │ ├── state.cpp │ ├── statec.cpp │ ├── un7z.cpp │ ├── un7z.h │ ├── unzip.c │ ├── unzip.h │ └── zipfn.cpp ├── cpu │ ├── a68k │ │ ├── fba_make68k.c │ │ └── mips │ │ │ ├── a68k.s │ │ │ ├── a68ktbl.inc │ │ │ ├── builda68k.bat │ │ │ └── fba_make68k.c │ ├── m68000_debug.h │ ├── m68000_intf.cpp │ ├── m68000_intf.h │ ├── m68k │ │ ├── m68k.h │ │ ├── m68k_in.c │ │ ├── m68kconf.h │ │ ├── m68kcpu.c │ │ ├── m68kcpu.h │ │ ├── m68kdasm.c │ │ ├── m68kmake.c │ │ ├── m68kopac.c │ │ ├── m68kopdm.c │ │ ├── m68kopnz.c │ │ ├── m68kops.c │ │ └── m68kops.h │ ├── z80 │ │ ├── z80.cpp │ │ ├── z80.h │ │ ├── z80daisy.cpp │ │ └── z80daisy.h │ ├── z80_intf.cpp │ └── z80_intf.h ├── dep │ ├── generated │ │ ├── app_gnuc.rc │ │ ├── build_details.h │ │ ├── driverlist_neogeo.h │ │ ├── neo_sprite_func.h │ │ └── neo_sprite_func_table.h │ ├── libs │ │ ├── lib7z │ │ │ ├── 7z.h │ │ │ ├── 7zAlloc.c │ │ │ ├── 7zAlloc.h │ │ │ ├── 7zArcIn.c │ │ │ ├── 7zBuf.c │ │ │ ├── 7zBuf.h │ │ │ ├── 7zBuf2.c │ │ │ ├── 7zCrc.c │ │ │ ├── 7zCrc.h │ │ │ ├── 7zCrcOpt.c │ │ │ ├── 7zDec.c │ │ │ ├── 7zFile.c │ │ │ ├── 7zFile.h │ │ │ ├── 7zStream.c │ │ │ ├── 7zTypes.h │ │ │ ├── 7zVersion.h │ │ │ ├── 7zVersion.rc │ │ │ ├── Aes.c │ │ │ ├── Aes.h │ │ │ ├── AesOpt.c │ │ │ ├── Alloc.c │ │ │ ├── Alloc.h │ │ │ ├── Bcj2.c │ │ │ ├── Bcj2.h │ │ │ ├── Bcj2Enc.c │ │ │ ├── Bra.c │ │ │ ├── Bra.h │ │ │ ├── Bra86.c │ │ │ ├── BraIA64.c │ │ │ ├── Compiler.h │ │ │ ├── CpuArch.h │ │ │ ├── Delta.c │ │ │ ├── Delta.h │ │ │ ├── LzFind.c │ │ │ ├── LzFind.h │ │ │ ├── LzFindMt.c │ │ │ ├── LzFindMt.h │ │ │ ├── LzHash.h │ │ │ ├── Lzma2Dec.c │ │ │ ├── Lzma2Dec.h │ │ │ ├── Lzma2Enc.c │ │ │ ├── Lzma2Enc.h │ │ │ ├── Lzma86.h │ │ │ ├── Lzma86Dec.c │ │ │ ├── Lzma86Enc.c │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaDec.h │ │ │ ├── LzmaEnc.c │ │ │ ├── LzmaEnc.h │ │ │ ├── LzmaLib.c │ │ │ ├── LzmaLib.h │ │ │ ├── MtCoder.c │ │ │ ├── MtCoder.h │ │ │ ├── Ppmd.h │ │ │ ├── Ppmd7.c │ │ │ ├── Ppmd7.h │ │ │ ├── Ppmd7Dec.c │ │ │ ├── Ppmd7Enc.c │ │ │ ├── Precomp.h │ │ │ ├── RotateDefs.h │ │ │ ├── Sha256.c │ │ │ ├── Sha256.h │ │ │ ├── Sort.c │ │ │ ├── Sort.h │ │ │ ├── Threads.c │ │ │ ├── Threads.h │ │ │ ├── Types.h │ │ │ ├── Xz.c │ │ │ ├── Xz.h │ │ │ ├── XzCrc64.c │ │ │ ├── XzCrc64.h │ │ │ ├── XzCrc64Opt.c │ │ │ ├── XzDec.c │ │ │ ├── XzEnc.c │ │ │ ├── XzEnc.h │ │ │ ├── XzIn.c │ │ │ ├── _fba_lzmasdk_v15.14 beta.txt │ │ │ └── _fba_lzmasdk_v9.22 beta.txt │ │ └── zlib │ │ │ ├── _fba_zlib_v127.txt │ │ │ ├── _fba_zlib_v128.txt │ │ │ ├── adler32.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ └── scripts │ │ ├── build_details.cpp │ │ ├── fixrc.pl │ │ ├── gamelist.pl │ │ ├── license2rtf.pl │ │ └── neo_sprite_func.pl ├── intf │ ├── cd │ │ ├── cd_interface.cpp │ │ ├── cd_interface.h │ │ └── win32 │ │ │ ├── cd_isowav.cpp │ │ │ ├── cdsound.cpp │ │ │ └── cdsound.h │ └── input │ │ └── inp_keys.h └── license.txt └── whatsnew.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | include makefile.libretro 2 | -------------------------------------------------------------------------------- /fba.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/fba.chm -------------------------------------------------------------------------------- /gamelist-gx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/gamelist-gx.txt -------------------------------------------------------------------------------- /gamelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/gamelist.txt -------------------------------------------------------------------------------- /makefile.burn_rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/makefile.burn_rules -------------------------------------------------------------------------------- /makefile.libretro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/makefile.libretro -------------------------------------------------------------------------------- /preset-example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/preset-example.zip -------------------------------------------------------------------------------- /projectfiles/libretro-android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/projectfiles/libretro-android/jni/Android.mk -------------------------------------------------------------------------------- /projectfiles/libretro-android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/projectfiles/libretro-android/jni/Application.mk -------------------------------------------------------------------------------- /src/burn/bitswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/bitswap.h -------------------------------------------------------------------------------- /src/burn/burn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/burn.cpp -------------------------------------------------------------------------------- /src/burn/burn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/burn.h -------------------------------------------------------------------------------- /src/burn/burn_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/burn_memory.cpp -------------------------------------------------------------------------------- /src/burn/burn_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/burn_sound.cpp -------------------------------------------------------------------------------- /src/burn/burn_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/burn_sound.h -------------------------------------------------------------------------------- /src/burn/burnint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/burnint.h -------------------------------------------------------------------------------- /src/burn/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/cheat.cpp -------------------------------------------------------------------------------- /src/burn/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/cheat.h -------------------------------------------------------------------------------- /src/burn/devices/eeprom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/devices/eeprom.cpp -------------------------------------------------------------------------------- /src/burn/devices/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/devices/eeprom.h -------------------------------------------------------------------------------- /src/burn/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/driver.h -------------------------------------------------------------------------------- /src/burn/drv/d_parent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/d_parent.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/d_neogeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/d_neogeo.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_decrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_decrypt.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_palette.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_run.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_sprite.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_sprite_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_sprite_render.h -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_text.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_text_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_text_render.h -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neo_upd4990a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neo_upd4990a.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neogeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neogeo.cpp -------------------------------------------------------------------------------- /src/burn/drv/neogeo/neogeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/drv/neogeo/neogeo.h -------------------------------------------------------------------------------- /src/burn/dsihandler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/dsihandler.S -------------------------------------------------------------------------------- /src/burn/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/load.cpp -------------------------------------------------------------------------------- /src/burn/snd/ay8910.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/ay8910.c -------------------------------------------------------------------------------- /src/burn/snd/ay8910.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/ay8910.h -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2610.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/burn_ym2610.cpp -------------------------------------------------------------------------------- /src/burn/snd/burn_ym2610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/burn_ym2610.h -------------------------------------------------------------------------------- /src/burn/snd/fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/fm.c -------------------------------------------------------------------------------- /src/burn/snd/fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/fm.h -------------------------------------------------------------------------------- /src/burn/snd/ymdeltat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/ymdeltat.c -------------------------------------------------------------------------------- /src/burn/snd/ymdeltat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/snd/ymdeltat.h -------------------------------------------------------------------------------- /src/burn/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/state.h -------------------------------------------------------------------------------- /src/burn/stdfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/stdfunc.h -------------------------------------------------------------------------------- /src/burn/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/timer.cpp -------------------------------------------------------------------------------- /src/burn/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/timer.h -------------------------------------------------------------------------------- /src/burn/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burn/version.h -------------------------------------------------------------------------------- /src/burner/burner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/burner.h -------------------------------------------------------------------------------- /src/burner/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/crypt.h -------------------------------------------------------------------------------- /src/burner/gameinp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/gameinp.h -------------------------------------------------------------------------------- /src/burner/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/ioapi.c -------------------------------------------------------------------------------- /src/burner/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/ioapi.h -------------------------------------------------------------------------------- /src/burner/libretro/burn_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/burn_endian.h -------------------------------------------------------------------------------- /src/burner/libretro/burn_libretro_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/burn_libretro_opts.h -------------------------------------------------------------------------------- /src/burner/libretro/burner_libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/burner_libretro.h -------------------------------------------------------------------------------- /src/burner/libretro/ctr/burn_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/ctr/burn_memory.cpp -------------------------------------------------------------------------------- /src/burner/libretro/libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /src/burner/libretro/libretro-common/include/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/libretro-common/include/compat/msvc/stdint.h -------------------------------------------------------------------------------- /src/burner/libretro/libretro-common/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/libretro-common/include/retro_inline.h -------------------------------------------------------------------------------- /src/burner/libretro/libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/libretro.cpp -------------------------------------------------------------------------------- /src/burner/libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/libretro.h -------------------------------------------------------------------------------- /src/burner/libretro/libretro_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/libretro_private.h -------------------------------------------------------------------------------- /src/burner/libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/link.T -------------------------------------------------------------------------------- /src/burner/libretro/neocdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/neocdlist.cpp -------------------------------------------------------------------------------- /src/burner/libretro/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/net.h -------------------------------------------------------------------------------- /src/burner/libretro/tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/tchar.h -------------------------------------------------------------------------------- /src/burner/libretro/wii_progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/wii_progressbar.c -------------------------------------------------------------------------------- /src/burner/libretro/wii_progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/wii_progressbar.h -------------------------------------------------------------------------------- /src/burner/libretro/wii_vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/wii_vm.c -------------------------------------------------------------------------------- /src/burner/libretro/wii_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/libretro/wii_vm.h -------------------------------------------------------------------------------- /src/burner/neocdlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/neocdlist.h -------------------------------------------------------------------------------- /src/burner/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/state.cpp -------------------------------------------------------------------------------- /src/burner/statec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/statec.cpp -------------------------------------------------------------------------------- /src/burner/un7z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/un7z.cpp -------------------------------------------------------------------------------- /src/burner/un7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/un7z.h -------------------------------------------------------------------------------- /src/burner/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/unzip.c -------------------------------------------------------------------------------- /src/burner/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/unzip.h -------------------------------------------------------------------------------- /src/burner/zipfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/burner/zipfn.cpp -------------------------------------------------------------------------------- /src/cpu/a68k/fba_make68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/a68k/fba_make68k.c -------------------------------------------------------------------------------- /src/cpu/a68k/mips/a68k.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/a68k/mips/a68k.s -------------------------------------------------------------------------------- /src/cpu/a68k/mips/a68ktbl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/a68k/mips/a68ktbl.inc -------------------------------------------------------------------------------- /src/cpu/a68k/mips/builda68k.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/a68k/mips/builda68k.bat -------------------------------------------------------------------------------- /src/cpu/a68k/mips/fba_make68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/a68k/mips/fba_make68k.c -------------------------------------------------------------------------------- /src/cpu/m68000_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68000_debug.h -------------------------------------------------------------------------------- /src/cpu/m68000_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68000_intf.cpp -------------------------------------------------------------------------------- /src/cpu/m68000_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68000_intf.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68k.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68k_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68k_in.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kconf.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kcpu.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kcpu.h -------------------------------------------------------------------------------- /src/cpu/m68k/m68kdasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kdasm.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kmake.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kopac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kopac.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kopdm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kopdm.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kopnz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kopnz.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kops.c -------------------------------------------------------------------------------- /src/cpu/m68k/m68kops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/m68k/m68kops.h -------------------------------------------------------------------------------- /src/cpu/z80/z80.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/z80/z80.cpp -------------------------------------------------------------------------------- /src/cpu/z80/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/z80/z80.h -------------------------------------------------------------------------------- /src/cpu/z80/z80daisy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/z80/z80daisy.cpp -------------------------------------------------------------------------------- /src/cpu/z80/z80daisy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/z80/z80daisy.h -------------------------------------------------------------------------------- /src/cpu/z80_intf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/z80_intf.cpp -------------------------------------------------------------------------------- /src/cpu/z80_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/cpu/z80_intf.h -------------------------------------------------------------------------------- /src/dep/generated/app_gnuc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/generated/app_gnuc.rc -------------------------------------------------------------------------------- /src/dep/generated/build_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/generated/build_details.h -------------------------------------------------------------------------------- /src/dep/generated/driverlist_neogeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/generated/driverlist_neogeo.h -------------------------------------------------------------------------------- /src/dep/generated/neo_sprite_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/generated/neo_sprite_func.h -------------------------------------------------------------------------------- /src/dep/generated/neo_sprite_func_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/generated/neo_sprite_func_table.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7z.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zAlloc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zAlloc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zArcIn.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zBuf.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zBuf.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zBuf2.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zCrc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zCrc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zCrcOpt.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zDec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zFile.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zFile.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zStream.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zTypes.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zVersion.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/7zVersion.rc -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Aes.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Aes.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/AesOpt.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Alloc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Alloc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Bcj2.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Bcj2.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Bcj2Enc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Bra.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Bra.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Bra86.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/BraIA64.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Compiler.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/CpuArch.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Delta.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Delta.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzFind.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzFind.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzFindMt.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzFindMt.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzHash.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma2Dec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma2Dec.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma2Enc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma2Enc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma86.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma86Dec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Lzma86Enc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzmaDec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzmaDec.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzmaEnc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzmaEnc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzmaLib.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/LzmaLib.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/MtCoder.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/MtCoder.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Ppmd.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Ppmd7.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Ppmd7.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Ppmd7Dec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Ppmd7Enc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Precomp.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/RotateDefs.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Sha256.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Sha256.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Sort.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Sort.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Threads.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Threads.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Types.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Xz.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/Xz.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzCrc64.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzCrc64.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzCrc64Opt.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzDec.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzEnc.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzEnc.h -------------------------------------------------------------------------------- /src/dep/libs/lib7z/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/lib7z/XzIn.c -------------------------------------------------------------------------------- /src/dep/libs/lib7z/_fba_lzmasdk_v15.14 beta.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/lib7z/_fba_lzmasdk_v9.22 beta.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/zlib/_fba_zlib_v127.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/zlib/_fba_zlib_v128.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dep/libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/adler32.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/crc32.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/crc32.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/deflate.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/deflate.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/gzread.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inffast.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inffast.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inflate.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inflate.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/trees.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/trees.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/zconf.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/zlib.h -------------------------------------------------------------------------------- /src/dep/libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/zutil.c -------------------------------------------------------------------------------- /src/dep/libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/libs/zlib/zutil.h -------------------------------------------------------------------------------- /src/dep/scripts/build_details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/scripts/build_details.cpp -------------------------------------------------------------------------------- /src/dep/scripts/fixrc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/scripts/fixrc.pl -------------------------------------------------------------------------------- /src/dep/scripts/gamelist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/scripts/gamelist.pl -------------------------------------------------------------------------------- /src/dep/scripts/license2rtf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/scripts/license2rtf.pl -------------------------------------------------------------------------------- /src/dep/scripts/neo_sprite_func.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/dep/scripts/neo_sprite_func.pl -------------------------------------------------------------------------------- /src/intf/cd/cd_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/intf/cd/cd_interface.cpp -------------------------------------------------------------------------------- /src/intf/cd/cd_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/intf/cd/cd_interface.h -------------------------------------------------------------------------------- /src/intf/cd/win32/cd_isowav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/intf/cd/win32/cd_isowav.cpp -------------------------------------------------------------------------------- /src/intf/cd/win32/cdsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/intf/cd/win32/cdsound.cpp -------------------------------------------------------------------------------- /src/intf/cd/win32/cdsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/intf/cd/win32/cdsound.h -------------------------------------------------------------------------------- /src/intf/input/inp_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/intf/input/inp_keys.h -------------------------------------------------------------------------------- /src/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/src/license.txt -------------------------------------------------------------------------------- /whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/fbalpha2012_neogeo/HEAD/whatsnew.html --------------------------------------------------------------------------------