├── .github └── workflows │ ├── crowdin_prep.yml │ └── crowdin_translate.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── COPYING ├── Makefile ├── Makefile.common ├── README.md ├── deps ├── libchdr │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ ├── include │ │ ├── dr_libs │ │ │ └── dr_flac.h │ │ └── libchdr │ │ │ ├── bitstream.h │ │ │ ├── cdrom.h │ │ │ ├── chd.h │ │ │ ├── chdconfig.h │ │ │ ├── coretypes.h │ │ │ ├── flac.h │ │ │ └── huffman.h │ └── src │ │ ├── libchdr_bitstream.c │ │ ├── libchdr_bitstream.d │ │ ├── libchdr_cdrom.c │ │ ├── libchdr_cdrom.d │ │ ├── libchdr_chd.c │ │ ├── libchdr_chd.d │ │ ├── libchdr_flac.c │ │ ├── libchdr_flac.d │ │ ├── libchdr_huffman.c │ │ ├── libchdr_huffman.d │ │ └── link.T ├── lzma-19.00 │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ │ ├── 7zTypes.h │ │ ├── Alloc.h │ │ ├── Bra.h │ │ ├── Compiler.h │ │ ├── CpuArch.h │ │ ├── Delta.h │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── Lzma86.h │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.h │ │ ├── Precomp.h │ │ └── Sort.h │ ├── lzma-history.txt │ ├── lzma.txt │ ├── lzma.vcxproj │ ├── lzma.vcxproj.filters │ └── src │ │ ├── Alloc.c │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── CpuArch.c │ │ ├── Delta.c │ │ ├── LzFind.c │ │ ├── Lzma86Dec.c │ │ ├── LzmaDec.c │ │ └── LzmaEnc.c └── zlib-1.2.11 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── configure │ ├── crc32.c │ ├── crc32.h │ ├── doc │ ├── algorithm.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── gzguts.h │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── treebuild.xml │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── intl ├── .gitignore ├── activate.py ├── core_option_regex.py ├── core_option_translation.py ├── crowdin.yaml ├── crowdin_prep.py ├── crowdin_source_upload.py ├── crowdin_translate.py ├── crowdin_translation_download.py ├── download_workflow.py ├── initial_sync.py ├── remove_initial_cycle.py ├── upload_workflow.py └── v1_to_v2_converter.py ├── jni ├── Android.mk └── Application.mk ├── libretro-common ├── cdrom │ └── cdrom.c ├── compat │ ├── compat_posix_string.c │ ├── compat_snprintf.c │ ├── compat_strcasestr.c │ ├── compat_strl.c │ └── fopen_utf8.c ├── encodings │ └── encoding_utf.c ├── file │ ├── file_path.c │ └── retro_dirent.c ├── include │ ├── boolean.h │ ├── cdrom │ │ └── cdrom.h │ ├── compat │ │ ├── apple_compat.h │ │ ├── fnmatch.h │ │ ├── fopen_utf8.h │ │ ├── getopt.h │ │ ├── ifaddrs.h │ │ ├── intrinsics.h │ │ ├── msvc.h │ │ ├── msvc │ │ │ └── stdint.h │ │ ├── posix_string.h │ │ ├── strcasestr.h │ │ ├── strl.h │ │ ├── zconf.h │ │ ├── zconf.h.in │ │ ├── zlib.h │ │ └── zutil.h │ ├── encodings │ │ └── utf.h │ ├── file │ │ └── file_path.h │ ├── libretro.h │ ├── lists │ │ ├── dir_list.h │ │ └── string_list.h │ ├── memalign.h │ ├── memmap.h │ ├── retro_assert.h │ ├── retro_common.h │ ├── retro_common_api.h │ ├── retro_dirent.h │ ├── retro_endianness.h │ ├── retro_environment.h │ ├── retro_inline.h │ ├── retro_math.h │ ├── retro_miscellaneous.h │ ├── retro_timers.h │ ├── streams │ │ ├── file_stream.h │ │ └── file_stream_transforms.h │ ├── string │ │ └── stdstring.h │ ├── time │ │ └── rtime.h │ └── vfs │ │ ├── vfs.h │ │ ├── vfs_implementation.h │ │ └── vfs_implementation_cdrom.h ├── lists │ ├── dir_list.c │ └── string_list.c ├── memmap │ └── memalign.c ├── streams │ ├── file_stream.c │ └── file_stream_transforms.c ├── string │ └── stdstring.c ├── time │ └── rtime.c └── vfs │ ├── vfs_implementation.c │ └── vfs_implementation_cdrom.c ├── libretro.cpp ├── libretro_core_options.h ├── libretro_core_options_intl.h ├── link.T └── mednafen ├── FileStream.cpp ├── FileStream.h ├── FileWrapper.cpp ├── FileWrapper.h ├── MemoryStream.cpp ├── MemoryStream.h ├── Stream.cpp ├── Stream.h ├── cdrom ├── CDAccess.cpp ├── CDAccess.h ├── CDAccess_CCD.cpp ├── CDAccess_CCD.h ├── CDAccess_CHD.cpp ├── CDAccess_CHD.h ├── CDAccess_Image.cpp ├── CDAccess_Image.h ├── CDUtility.c ├── CDUtility.h ├── SimpleFIFO.h ├── audioreader.cpp ├── audioreader.h ├── audioreader_opus.cpp ├── audioreader_opus.h ├── cdromif.cpp ├── cdromif.h ├── dvdisaster.h ├── edc_crc32.c ├── edc_crc32.h ├── galois-inlines.h ├── galois.c ├── galois.h ├── l-ec.c ├── l-ec.h ├── lec.c ├── lec.h ├── recover-raw.c └── recover-raw.h ├── endian.cpp ├── error.cpp ├── error.h ├── file.c ├── file.h ├── general.cpp ├── general.h ├── git.h ├── hw_misc └── arcade_card │ ├── arcade_card.cpp │ └── arcade_card.h ├── include └── blip │ └── Blip_Buffer.h ├── math_ops.h ├── mednafen-endian.h ├── mednafen-types.h ├── mednafen.h ├── mempatcher-driver.h ├── mempatcher.cpp ├── mempatcher.h ├── msvc_compat.h ├── okiadpcm-deltatable.h ├── okiadpcm.cpp ├── okiadpcm.h ├── pce_fast ├── huc.cpp ├── huc.h ├── huc6280.cpp ├── huc6280.h ├── huc6280_ops.inc ├── input.cpp ├── input.h ├── ioread.inc ├── pce.cpp ├── pce.h ├── pcecd.cpp ├── pcecd.h ├── pcecd_drive.cpp ├── pcecd_drive.h ├── psg.cpp ├── psg.h ├── vdc.cpp ├── vdc.h └── vpc_mix_inner.inc ├── settings-common.h ├── settings.cpp ├── settings.h ├── sound └── Blip_Buffer.cpp ├── state.cpp ├── state.h ├── tremor ├── COPYING ├── README ├── asm_arm.h ├── backends.h ├── bitwise.c ├── block.c ├── block.h ├── codebook.c ├── codebook.h ├── codec_internal.h ├── floor0.c ├── floor1.c ├── framing.c ├── info.c ├── ivorbiscodec.h ├── ivorbisfile.h ├── lsp_lookup.h ├── mapping0.c ├── mdct.c ├── mdct.h ├── mdct_lookup.h ├── misc.h ├── ogg.h ├── os.h ├── registry.c ├── registry.h ├── res012.c ├── sharedbook.c ├── synthesis.c ├── vorbisfile.c ├── window.c ├── window.h └── window_lookup.h └── video ├── surface.cpp └── surface.h /.github/workflows/crowdin_prep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/.github/workflows/crowdin_prep.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin_translate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/.github/workflows/crowdin_translate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/Makefile.common -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/README.md -------------------------------------------------------------------------------- /deps/libchdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/CMakeLists.txt -------------------------------------------------------------------------------- /deps/libchdr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/LICENSE.txt -------------------------------------------------------------------------------- /deps/libchdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/README.md -------------------------------------------------------------------------------- /deps/libchdr/include/dr_libs/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/dr_libs/dr_flac.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/bitstream.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/cdrom.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/chd.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/chdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/chdconfig.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/coretypes.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/flac.h -------------------------------------------------------------------------------- /deps/libchdr/include/libchdr/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/include/libchdr/huffman.h -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_bitstream.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_bitstream.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_bitstream.d -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_cdrom.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_cdrom.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_cdrom.d -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_chd.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_chd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_chd.d -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_flac.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_flac.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_flac.d -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_huffman.c -------------------------------------------------------------------------------- /deps/libchdr/src/libchdr_huffman.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/libchdr_huffman.d -------------------------------------------------------------------------------- /deps/libchdr/src/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/libchdr/src/link.T -------------------------------------------------------------------------------- /deps/lzma-19.00/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/CMakeLists.txt -------------------------------------------------------------------------------- /deps/lzma-19.00/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/LICENSE -------------------------------------------------------------------------------- /deps/lzma-19.00/include/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/7zTypes.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Alloc.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Bra.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Compiler.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/CpuArch.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Delta.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/LzFind.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/LzHash.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Lzma86.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/LzmaDec.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/LzmaEnc.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/LzmaLib.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Precomp.h -------------------------------------------------------------------------------- /deps/lzma-19.00/include/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/include/Sort.h -------------------------------------------------------------------------------- /deps/lzma-19.00/lzma-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/lzma-history.txt -------------------------------------------------------------------------------- /deps/lzma-19.00/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/lzma.txt -------------------------------------------------------------------------------- /deps/lzma-19.00/lzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/lzma.vcxproj -------------------------------------------------------------------------------- /deps/lzma-19.00/lzma.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/lzma.vcxproj.filters -------------------------------------------------------------------------------- /deps/lzma-19.00/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/Alloc.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/Bra86.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/BraIA64.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/CpuArch.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/Delta.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/LzFind.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/Lzma86Dec.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/LzmaDec.c -------------------------------------------------------------------------------- /deps/lzma-19.00/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/lzma-19.00/src/LzmaEnc.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/CMakeLists.txt -------------------------------------------------------------------------------- /deps/zlib-1.2.11/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/ChangeLog -------------------------------------------------------------------------------- /deps/zlib-1.2.11/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/FAQ -------------------------------------------------------------------------------- /deps/zlib-1.2.11/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/INDEX -------------------------------------------------------------------------------- /deps/zlib-1.2.11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/Makefile -------------------------------------------------------------------------------- /deps/zlib-1.2.11/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/Makefile.in -------------------------------------------------------------------------------- /deps/zlib-1.2.11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/README -------------------------------------------------------------------------------- /deps/zlib-1.2.11/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/adler32.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/configure -------------------------------------------------------------------------------- /deps/zlib-1.2.11/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/crc32.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/crc32.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/doc/algorithm.txt -------------------------------------------------------------------------------- /deps/zlib-1.2.11/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/doc/rfc1950.txt -------------------------------------------------------------------------------- /deps/zlib-1.2.11/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/doc/rfc1951.txt -------------------------------------------------------------------------------- /deps/zlib-1.2.11/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/doc/rfc1952.txt -------------------------------------------------------------------------------- /deps/zlib-1.2.11/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/doc/txtvsbin.txt -------------------------------------------------------------------------------- /deps/zlib-1.2.11/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/gzguts.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/infback.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inffast.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inffast.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inffixed.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inflate.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inflate.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inftrees.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/inftrees.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/make_vms.com -------------------------------------------------------------------------------- /deps/zlib-1.2.11/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/treebuild.xml -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zconf.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zconf.h.cmakein -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zconf.h.in -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib.3 -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib.3.pdf -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib.h -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib.map -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib.pc.cmakein -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib.pc.in -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zlib2ansi -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zutil.c -------------------------------------------------------------------------------- /deps/zlib-1.2.11/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/deps/zlib-1.2.11/zutil.h -------------------------------------------------------------------------------- /intl/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | crowdin-cli.jar 3 | *.h 4 | *.json 5 | -------------------------------------------------------------------------------- /intl/activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/activate.py -------------------------------------------------------------------------------- /intl/core_option_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/core_option_regex.py -------------------------------------------------------------------------------- /intl/core_option_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/core_option_translation.py -------------------------------------------------------------------------------- /intl/crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/crowdin.yaml -------------------------------------------------------------------------------- /intl/crowdin_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/crowdin_prep.py -------------------------------------------------------------------------------- /intl/crowdin_source_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/crowdin_source_upload.py -------------------------------------------------------------------------------- /intl/crowdin_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/crowdin_translate.py -------------------------------------------------------------------------------- /intl/crowdin_translation_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/crowdin_translation_download.py -------------------------------------------------------------------------------- /intl/download_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/download_workflow.py -------------------------------------------------------------------------------- /intl/initial_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/initial_sync.py -------------------------------------------------------------------------------- /intl/remove_initial_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/remove_initial_cycle.py -------------------------------------------------------------------------------- /intl/upload_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/upload_workflow.py -------------------------------------------------------------------------------- /intl/v1_to_v2_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/intl/v1_to_v2_converter.py -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /libretro-common/cdrom/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/cdrom/cdrom.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_posix_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/compat/compat_posix_string.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/compat/compat_snprintf.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/compat/compat_strcasestr.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/compat/compat_strl.c -------------------------------------------------------------------------------- /libretro-common/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/compat/fopen_utf8.c -------------------------------------------------------------------------------- /libretro-common/encodings/encoding_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/encodings/encoding_utf.c -------------------------------------------------------------------------------- /libretro-common/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/file/file_path.c -------------------------------------------------------------------------------- /libretro-common/file/retro_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/file/retro_dirent.c -------------------------------------------------------------------------------- /libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /libretro-common/include/cdrom/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/cdrom/cdrom.h -------------------------------------------------------------------------------- /libretro-common/include/compat/apple_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/apple_compat.h -------------------------------------------------------------------------------- /libretro-common/include/compat/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/fnmatch.h -------------------------------------------------------------------------------- /libretro-common/include/compat/fopen_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/fopen_utf8.h -------------------------------------------------------------------------------- /libretro-common/include/compat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/getopt.h -------------------------------------------------------------------------------- /libretro-common/include/compat/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/ifaddrs.h -------------------------------------------------------------------------------- /libretro-common/include/compat/intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/intrinsics.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/msvc.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/msvc/stdint.h -------------------------------------------------------------------------------- /libretro-common/include/compat/posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/posix_string.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/strcasestr.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/strl.h -------------------------------------------------------------------------------- /libretro-common/include/compat/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/zconf.h -------------------------------------------------------------------------------- /libretro-common/include/compat/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/zconf.h.in -------------------------------------------------------------------------------- /libretro-common/include/compat/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/zlib.h -------------------------------------------------------------------------------- /libretro-common/include/compat/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/compat/zutil.h -------------------------------------------------------------------------------- /libretro-common/include/encodings/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/encodings/utf.h -------------------------------------------------------------------------------- /libretro-common/include/file/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/file/file_path.h -------------------------------------------------------------------------------- /libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /libretro-common/include/lists/dir_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/lists/dir_list.h -------------------------------------------------------------------------------- /libretro-common/include/lists/string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/lists/string_list.h -------------------------------------------------------------------------------- /libretro-common/include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/memalign.h -------------------------------------------------------------------------------- /libretro-common/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/memmap.h -------------------------------------------------------------------------------- /libretro-common/include/retro_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_assert.h -------------------------------------------------------------------------------- /libretro-common/include/retro_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_common.h -------------------------------------------------------------------------------- /libretro-common/include/retro_common_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_common_api.h -------------------------------------------------------------------------------- /libretro-common/include/retro_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_dirent.h -------------------------------------------------------------------------------- /libretro-common/include/retro_endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_endianness.h -------------------------------------------------------------------------------- /libretro-common/include/retro_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_environment.h -------------------------------------------------------------------------------- /libretro-common/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_inline.h -------------------------------------------------------------------------------- /libretro-common/include/retro_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_math.h -------------------------------------------------------------------------------- /libretro-common/include/retro_miscellaneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_miscellaneous.h -------------------------------------------------------------------------------- /libretro-common/include/retro_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/retro_timers.h -------------------------------------------------------------------------------- /libretro-common/include/streams/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/streams/file_stream.h -------------------------------------------------------------------------------- /libretro-common/include/streams/file_stream_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/streams/file_stream_transforms.h -------------------------------------------------------------------------------- /libretro-common/include/string/stdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/string/stdstring.h -------------------------------------------------------------------------------- /libretro-common/include/time/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/time/rtime.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/vfs/vfs_implementation.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs_implementation_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/include/vfs/vfs_implementation_cdrom.h -------------------------------------------------------------------------------- /libretro-common/lists/dir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/lists/dir_list.c -------------------------------------------------------------------------------- /libretro-common/lists/string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/lists/string_list.c -------------------------------------------------------------------------------- /libretro-common/memmap/memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/memmap/memalign.c -------------------------------------------------------------------------------- /libretro-common/streams/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/streams/file_stream.c -------------------------------------------------------------------------------- /libretro-common/streams/file_stream_transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/streams/file_stream_transforms.c -------------------------------------------------------------------------------- /libretro-common/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/string/stdstring.c -------------------------------------------------------------------------------- /libretro-common/time/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/time/rtime.c -------------------------------------------------------------------------------- /libretro-common/vfs/vfs_implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/vfs/vfs_implementation.c -------------------------------------------------------------------------------- /libretro-common/vfs/vfs_implementation_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro-common/vfs/vfs_implementation_cdrom.c -------------------------------------------------------------------------------- /libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro.cpp -------------------------------------------------------------------------------- /libretro_core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro_core_options.h -------------------------------------------------------------------------------- /libretro_core_options_intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/libretro_core_options_intl.h -------------------------------------------------------------------------------- /link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/link.T -------------------------------------------------------------------------------- /mednafen/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/FileStream.cpp -------------------------------------------------------------------------------- /mednafen/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/FileStream.h -------------------------------------------------------------------------------- /mednafen/FileWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/FileWrapper.cpp -------------------------------------------------------------------------------- /mednafen/FileWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/FileWrapper.h -------------------------------------------------------------------------------- /mednafen/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/MemoryStream.cpp -------------------------------------------------------------------------------- /mednafen/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/MemoryStream.h -------------------------------------------------------------------------------- /mednafen/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/Stream.cpp -------------------------------------------------------------------------------- /mednafen/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/Stream.h -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess.h -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess_CCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess_CCD.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess_CCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess_CCD.h -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess_CHD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess_CHD.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess_CHD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess_CHD.h -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess_Image.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/CDAccess_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDAccess_Image.h -------------------------------------------------------------------------------- /mednafen/cdrom/CDUtility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDUtility.c -------------------------------------------------------------------------------- /mednafen/cdrom/CDUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/CDUtility.h -------------------------------------------------------------------------------- /mednafen/cdrom/SimpleFIFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/SimpleFIFO.h -------------------------------------------------------------------------------- /mednafen/cdrom/audioreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/audioreader.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/audioreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/audioreader.h -------------------------------------------------------------------------------- /mednafen/cdrom/audioreader_opus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/audioreader_opus.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/audioreader_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/audioreader_opus.h -------------------------------------------------------------------------------- /mednafen/cdrom/cdromif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/cdromif.cpp -------------------------------------------------------------------------------- /mednafen/cdrom/cdromif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/cdromif.h -------------------------------------------------------------------------------- /mednafen/cdrom/dvdisaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/dvdisaster.h -------------------------------------------------------------------------------- /mednafen/cdrom/edc_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/edc_crc32.c -------------------------------------------------------------------------------- /mednafen/cdrom/edc_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/edc_crc32.h -------------------------------------------------------------------------------- /mednafen/cdrom/galois-inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/galois-inlines.h -------------------------------------------------------------------------------- /mednafen/cdrom/galois.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/galois.c -------------------------------------------------------------------------------- /mednafen/cdrom/galois.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/galois.h -------------------------------------------------------------------------------- /mednafen/cdrom/l-ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/l-ec.c -------------------------------------------------------------------------------- /mednafen/cdrom/l-ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/l-ec.h -------------------------------------------------------------------------------- /mednafen/cdrom/lec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/lec.c -------------------------------------------------------------------------------- /mednafen/cdrom/lec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/lec.h -------------------------------------------------------------------------------- /mednafen/cdrom/recover-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/recover-raw.c -------------------------------------------------------------------------------- /mednafen/cdrom/recover-raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/cdrom/recover-raw.h -------------------------------------------------------------------------------- /mednafen/endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/endian.cpp -------------------------------------------------------------------------------- /mednafen/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/error.cpp -------------------------------------------------------------------------------- /mednafen/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/error.h -------------------------------------------------------------------------------- /mednafen/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/file.c -------------------------------------------------------------------------------- /mednafen/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/file.h -------------------------------------------------------------------------------- /mednafen/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/general.cpp -------------------------------------------------------------------------------- /mednafen/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/general.h -------------------------------------------------------------------------------- /mednafen/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/git.h -------------------------------------------------------------------------------- /mednafen/hw_misc/arcade_card/arcade_card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/hw_misc/arcade_card/arcade_card.cpp -------------------------------------------------------------------------------- /mednafen/hw_misc/arcade_card/arcade_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/hw_misc/arcade_card/arcade_card.h -------------------------------------------------------------------------------- /mednafen/include/blip/Blip_Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/include/blip/Blip_Buffer.h -------------------------------------------------------------------------------- /mednafen/math_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/math_ops.h -------------------------------------------------------------------------------- /mednafen/mednafen-endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/mednafen-endian.h -------------------------------------------------------------------------------- /mednafen/mednafen-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/mednafen-types.h -------------------------------------------------------------------------------- /mednafen/mednafen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/mednafen.h -------------------------------------------------------------------------------- /mednafen/mempatcher-driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/mempatcher-driver.h -------------------------------------------------------------------------------- /mednafen/mempatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/mempatcher.cpp -------------------------------------------------------------------------------- /mednafen/mempatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/mempatcher.h -------------------------------------------------------------------------------- /mednafen/msvc_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/msvc_compat.h -------------------------------------------------------------------------------- /mednafen/okiadpcm-deltatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/okiadpcm-deltatable.h -------------------------------------------------------------------------------- /mednafen/okiadpcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/okiadpcm.cpp -------------------------------------------------------------------------------- /mednafen/okiadpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/okiadpcm.h -------------------------------------------------------------------------------- /mednafen/pce_fast/huc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/huc.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/huc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/huc.h -------------------------------------------------------------------------------- /mednafen/pce_fast/huc6280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/huc6280.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/huc6280.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/huc6280.h -------------------------------------------------------------------------------- /mednafen/pce_fast/huc6280_ops.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/huc6280_ops.inc -------------------------------------------------------------------------------- /mednafen/pce_fast/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/input.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/input.h -------------------------------------------------------------------------------- /mednafen/pce_fast/ioread.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/ioread.inc -------------------------------------------------------------------------------- /mednafen/pce_fast/pce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/pce.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/pce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/pce.h -------------------------------------------------------------------------------- /mednafen/pce_fast/pcecd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/pcecd.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/pcecd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/pcecd.h -------------------------------------------------------------------------------- /mednafen/pce_fast/pcecd_drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/pcecd_drive.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/pcecd_drive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/pcecd_drive.h -------------------------------------------------------------------------------- /mednafen/pce_fast/psg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/psg.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/psg.h -------------------------------------------------------------------------------- /mednafen/pce_fast/vdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/vdc.cpp -------------------------------------------------------------------------------- /mednafen/pce_fast/vdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/vdc.h -------------------------------------------------------------------------------- /mednafen/pce_fast/vpc_mix_inner.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/pce_fast/vpc_mix_inner.inc -------------------------------------------------------------------------------- /mednafen/settings-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/settings-common.h -------------------------------------------------------------------------------- /mednafen/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/settings.cpp -------------------------------------------------------------------------------- /mednafen/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/settings.h -------------------------------------------------------------------------------- /mednafen/sound/Blip_Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/sound/Blip_Buffer.cpp -------------------------------------------------------------------------------- /mednafen/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/state.cpp -------------------------------------------------------------------------------- /mednafen/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/state.h -------------------------------------------------------------------------------- /mednafen/tremor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/COPYING -------------------------------------------------------------------------------- /mednafen/tremor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/README -------------------------------------------------------------------------------- /mednafen/tremor/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/asm_arm.h -------------------------------------------------------------------------------- /mednafen/tremor/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/backends.h -------------------------------------------------------------------------------- /mednafen/tremor/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/bitwise.c -------------------------------------------------------------------------------- /mednafen/tremor/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/block.c -------------------------------------------------------------------------------- /mednafen/tremor/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/block.h -------------------------------------------------------------------------------- /mednafen/tremor/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/codebook.c -------------------------------------------------------------------------------- /mednafen/tremor/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/codebook.h -------------------------------------------------------------------------------- /mednafen/tremor/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/codec_internal.h -------------------------------------------------------------------------------- /mednafen/tremor/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/floor0.c -------------------------------------------------------------------------------- /mednafen/tremor/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/floor1.c -------------------------------------------------------------------------------- /mednafen/tremor/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/framing.c -------------------------------------------------------------------------------- /mednafen/tremor/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/info.c -------------------------------------------------------------------------------- /mednafen/tremor/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/ivorbiscodec.h -------------------------------------------------------------------------------- /mednafen/tremor/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/ivorbisfile.h -------------------------------------------------------------------------------- /mednafen/tremor/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/lsp_lookup.h -------------------------------------------------------------------------------- /mednafen/tremor/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/mapping0.c -------------------------------------------------------------------------------- /mednafen/tremor/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/mdct.c -------------------------------------------------------------------------------- /mednafen/tremor/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/mdct.h -------------------------------------------------------------------------------- /mednafen/tremor/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/mdct_lookup.h -------------------------------------------------------------------------------- /mednafen/tremor/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/misc.h -------------------------------------------------------------------------------- /mednafen/tremor/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/ogg.h -------------------------------------------------------------------------------- /mednafen/tremor/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/os.h -------------------------------------------------------------------------------- /mednafen/tremor/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/registry.c -------------------------------------------------------------------------------- /mednafen/tremor/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/registry.h -------------------------------------------------------------------------------- /mednafen/tremor/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/res012.c -------------------------------------------------------------------------------- /mednafen/tremor/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/sharedbook.c -------------------------------------------------------------------------------- /mednafen/tremor/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/synthesis.c -------------------------------------------------------------------------------- /mednafen/tremor/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/vorbisfile.c -------------------------------------------------------------------------------- /mednafen/tremor/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/window.c -------------------------------------------------------------------------------- /mednafen/tremor/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/window.h -------------------------------------------------------------------------------- /mednafen/tremor/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/tremor/window_lookup.h -------------------------------------------------------------------------------- /mednafen/video/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/video/surface.cpp -------------------------------------------------------------------------------- /mednafen/video/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/beetle-supergrafx-libretro/HEAD/mednafen/video/surface.h --------------------------------------------------------------------------------