├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── HISTORY.txt ├── LICENSE.txt ├── Makefile.gc ├── Makefile.libretro ├── Makefile.wii ├── README.md ├── appveyor.yml ├── core ├── cart_hw │ ├── areplay.c │ ├── areplay.h │ ├── eeprom_93c.c │ ├── eeprom_93c.h │ ├── eeprom_i2c.c │ ├── eeprom_i2c.h │ ├── eeprom_spi.c │ ├── eeprom_spi.h │ ├── ggenie.c │ ├── ggenie.h │ ├── md_cart.c │ ├── md_cart.h │ ├── megasd.c │ ├── megasd.h │ ├── sms_cart.c │ ├── sms_cart.h │ ├── sram.c │ ├── sram.h │ └── svp │ │ ├── imageformat.txt │ │ ├── ssp16.c │ │ ├── ssp16.h │ │ ├── svp.c │ │ ├── svp.h │ │ └── svpdoc.txt ├── cd_hw │ ├── cd_cart.c │ ├── cd_cart.h │ ├── cdc.c │ ├── cdc.h │ ├── cdd.c │ ├── cdd.h │ ├── gfx.c │ ├── gfx.h │ ├── libchdr │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── deps │ │ │ ├── libFLAC │ │ │ │ ├── AUTHORS │ │ │ │ ├── COPYING.Xiph │ │ │ │ ├── README │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── fixed.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── include │ │ │ │ │ ├── FLAC │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ └── stream_decoder.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── macros.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ └── memory.h │ │ │ │ │ ├── protected │ │ │ │ │ │ └── stream_decoder.h │ │ │ │ │ └── share │ │ │ │ │ │ ├── alloc.h │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ └── endswap.h │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc_intrin_avx2.c │ │ │ │ ├── lpc_intrin_sse.c │ │ │ │ ├── lpc_intrin_sse2.c │ │ │ │ ├── lpc_intrin_sse41.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ └── stream_decoder.c │ │ │ ├── lzma │ │ │ │ ├── 7zTypes.h │ │ │ │ ├── Compiler.h │ │ │ │ ├── DOC │ │ │ │ │ ├── lzma-history.txt │ │ │ │ │ ├── lzma-sdk.txt │ │ │ │ │ ├── lzma-specification.txt │ │ │ │ │ └── lzma.txt │ │ │ │ ├── LzFind.c │ │ │ │ ├── LzFind.h │ │ │ │ ├── LzHash.h │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── LzmaDec.h │ │ │ │ ├── LzmaEnc.c │ │ │ │ ├── LzmaEnc.h │ │ │ │ └── Precomp.h │ │ │ └── zlib │ │ │ │ ├── ChangeLog │ │ │ │ ├── README │ │ │ │ ├── adler32.c │ │ │ │ ├── gzguts.h │ │ │ │ ├── inffast.c │ │ │ │ ├── inffast.h │ │ │ │ ├── inffixed.h │ │ │ │ ├── inflate.c │ │ │ │ ├── inflate.h │ │ │ │ ├── inftrees.c │ │ │ │ ├── inftrees.h │ │ │ │ ├── zconf.h │ │ │ │ ├── zlib.h │ │ │ │ ├── zutil.c │ │ │ │ └── zutil.h │ │ └── src │ │ │ ├── bitstream.c │ │ │ ├── bitstream.h │ │ │ ├── cdrom.c │ │ │ ├── cdrom.h │ │ │ ├── chd.c │ │ │ ├── chd.h │ │ │ ├── coretypes.h │ │ │ ├── flac.c │ │ │ ├── flac.h │ │ │ ├── huffman.c │ │ │ └── huffman.h │ ├── pcm.c │ ├── pcm.h │ ├── scd.c │ └── scd.h ├── debug │ ├── cpuhook.c │ └── cpuhook.h ├── genesis.c ├── genesis.h ├── hvc.h ├── input_hw │ ├── activator.c │ ├── activator.h │ ├── gamepad.c │ ├── gamepad.h │ ├── graphic_board.c │ ├── graphic_board.h │ ├── input.c │ ├── input.h │ ├── lightgun.c │ ├── lightgun.h │ ├── mouse.c │ ├── mouse.h │ ├── paddle.c │ ├── paddle.h │ ├── sportspad.c │ ├── sportspad.h │ ├── teamplayer.c │ ├── teamplayer.h │ ├── terebi_oekaki.c │ ├── terebi_oekaki.h │ ├── xe_1ap.c │ └── xe_1ap.h ├── io_ctrl.c ├── io_ctrl.h ├── loadrom.c ├── loadrom.h ├── m68k │ ├── m68k.h │ ├── m68kconf.h │ ├── m68kcpu.c │ ├── m68kcpu.h │ ├── m68ki_cycles.h │ ├── m68ki_instruction_jump_table.h │ ├── m68kops.h │ ├── readme.txt │ ├── s68kconf.h │ ├── s68kcpu.c │ └── s68ki_cycles.h ├── macros.h ├── mem68k.c ├── mem68k.h ├── membnk.c ├── membnk.h ├── memz80.c ├── memz80.h ├── ntsc │ ├── changes.txt │ ├── license.txt │ ├── md_ntsc.c │ ├── md_ntsc.h │ ├── md_ntsc_config.h │ ├── md_ntsc_impl.h │ ├── readme.txt │ ├── sms_ntsc.c │ ├── sms_ntsc.h │ ├── sms_ntsc.txt │ ├── sms_ntsc_config.h │ └── sms_ntsc_impl.h ├── shared.h ├── sound │ ├── blip_buf.c │ ├── blip_buf.h │ ├── eq.c │ ├── eq.h │ ├── opll.c │ ├── opll.h │ ├── psg.c │ ├── psg.h │ ├── sound.c │ ├── sound.h │ ├── ym2413.c │ ├── ym2413.h │ ├── ym2612.c │ ├── ym2612.h │ ├── ym3438.c │ └── ym3438.h ├── state.c ├── state.h ├── system.c ├── system.h ├── tremor │ ├── CHANGELOG │ ├── COPYING │ ├── README │ ├── Version_script.in │ ├── asm_arm.h │ ├── backends.h │ ├── bitwise.c │ ├── block.c │ ├── block.h │ ├── codebook.c │ ├── codebook.h │ ├── codec_internal.h │ ├── config_types.h │ ├── configure.in │ ├── 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 │ ├── os_types.h │ ├── registry.c │ ├── registry.h │ ├── res012.c │ ├── sharedbook.c │ ├── synthesis.c │ ├── vorbisfile.c │ ├── window.c │ ├── window.h │ └── window_lookup.h ├── types.h ├── vdp_ctrl.c ├── vdp_ctrl.h ├── vdp_render.c ├── vdp_render.h └── z80 │ ├── osd_cpu.h │ ├── z80.c │ └── z80.h ├── gcw0 ├── Makefile ├── config.c ├── config.h ├── error.c ├── error.h ├── fileio.c ├── fileio.h ├── main.c ├── main.h ├── opk-data │ ├── CLASSIC_01.png │ ├── CLASSIC_01_RED.png │ ├── CLASSIC_02.png │ ├── GG.png │ ├── LICENSE.txt │ ├── MCD.png │ ├── MD.png │ ├── PICO.png │ ├── ProggyTiny.ttf │ ├── SG1000.png │ ├── SMS.png │ ├── SQUARE_02.png │ ├── default.gcw0.desktop │ ├── gcw0readme.txt │ └── scanlines.png ├── opk_build.sh ├── osd.h ├── unzip.c ├── unzip.h ├── utils.c └── utils.h ├── gx ├── config.c ├── config.h ├── docs │ ├── README.doc │ └── README.pdf ├── fileio │ ├── file_load.c │ ├── file_load.h │ ├── file_slot.c │ ├── file_slot.h │ ├── fileio.c │ ├── fileio.h │ ├── history.c │ └── history.h ├── gui │ ├── cheats.c │ ├── cheats.h │ ├── filesel.c │ ├── filesel.h │ ├── font.c │ ├── font.h │ ├── gui.c │ ├── gui.h │ ├── legal.c │ ├── menu.c │ ├── menu.h │ └── saveicon.h ├── gx_audio.c ├── gx_audio.h ├── gx_input.c ├── gx_input.h ├── gx_video.c ├── gx_video.h ├── images │ ├── Banner_bottom.png │ ├── Banner_main.png │ ├── Banner_top.png │ ├── Bg_credits.png │ ├── Bg_intro_c1.png │ ├── Bg_intro_c2.png │ ├── Bg_intro_c3.png │ ├── Bg_intro_c4.png │ ├── Bg_layer.png │ ├── Bg_overlay.png │ ├── Browser_dir.png │ ├── Button_arrow.png │ ├── Button_arrow_over.png │ ├── Button_delete.png │ ├── Button_delete_over.png │ ├── Button_digit.png │ ├── Button_digit_over.png │ ├── Button_down.png │ ├── Button_down_over.png │ ├── Button_icon.png │ ├── Button_icon_over.png │ ├── Button_icon_sm.png │ ├── Button_icon_sm_over.png │ ├── Button_load.png │ ├── Button_load_over.png │ ├── Button_save.png │ ├── Button_save_over.png │ ├── Button_sm_blue.png │ ├── Button_sm_grey.png │ ├── Button_sm_yellow.png │ ├── Button_special.png │ ├── Button_special_over.png │ ├── Button_text.png │ ├── Button_text_over.png │ ├── Button_up.png │ ├── Button_up_over.png │ ├── CD_access_off.png │ ├── CD_access_on.png │ ├── CD_ready_off.png │ ├── CD_ready_on.png │ ├── Cart_gg.png │ ├── Cart_md.png │ ├── Cart_ms.png │ ├── Cart_sg.png │ ├── Crosshair_p1.png │ ├── Crosshair_p2.png │ ├── Ctrl_4wayplay.png │ ├── Ctrl_activator.png │ ├── Ctrl_config.png │ ├── Ctrl_gamepad.png │ ├── Ctrl_graphic_board.png │ ├── Ctrl_justifiers.png │ ├── Ctrl_lightphaser.png │ ├── Ctrl_mastertap.png │ ├── Ctrl_menacer.png │ ├── Ctrl_mouse.png │ ├── Ctrl_none.png │ ├── Ctrl_pad2b.png │ ├── Ctrl_pad3b.png │ ├── Ctrl_pad6b.png │ ├── Ctrl_pad_auto.png │ ├── Ctrl_paddle.png │ ├── Ctrl_sportspad.png │ ├── Ctrl_teamplayer.png │ ├── Ctrl_xe_1ap.png │ ├── Frame_s1.png │ ├── Frame_s1_title.png │ ├── Frame_s2.png │ ├── Frame_s2_title.png │ ├── Frame_s3.png │ ├── Frame_throbber.png │ ├── Key_A_gcn.png │ ├── Key_A_wii.png │ ├── Key_B_gcn.png │ ├── Key_B_wii.png │ ├── Key_DPAD.png │ ├── Key_L_gcn.png │ ├── Key_Minus_wii.png │ ├── Key_Plus_wii.png │ ├── Key_R_gcn.png │ ├── Load_cd.png │ ├── Load_gg.png │ ├── Load_md.png │ ├── Load_ms.png │ ├── Load_recent.png │ ├── Load_sg.png │ ├── Main_cheats.png │ ├── Main_file.png │ ├── Main_load.png │ ├── Main_logo.png │ ├── Main_options.png │ ├── Main_play_gcn.png │ ├── Main_play_wii.png │ ├── Main_quit.png │ ├── Main_reset.png │ ├── Main_showinfo.png │ ├── Main_takeshot.png │ ├── Option_ctrl.png │ ├── Option_menu.png │ ├── Option_sound.png │ ├── Option_system.png │ ├── Option_video.png │ ├── Overlay_bar.png │ ├── Snap_empty.png │ ├── Star_empty.png │ ├── Star_full.png │ ├── ctrl_classic.png │ ├── ctrl_gamecube.png │ ├── ctrl_nunchuk.png │ ├── ctrl_option_off.png │ ├── ctrl_option_on.png │ ├── ctrl_wiimote.png │ ├── ctrl_wiiu.png │ └── generic_point.png ├── main.c ├── osd.h ├── sounds │ ├── button_over.pcm │ ├── button_select.pcm │ └── intro.pcm └── utils │ ├── oggplayer.c │ ├── oggplayer.h │ ├── vi_encoder.c │ ├── vi_encoder.h │ └── wiidrc │ ├── LICENSE │ ├── wiidrc.c │ ├── wiidrc.h │ └── wiidrc_structs.h ├── intl ├── .gitignore ├── 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 ├── libretro ├── Makefile.common ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── dirs │ ├── rules │ └── source │ │ └── format ├── 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_cdrom.c │ │ │ ├── libchdr_chd.c │ │ │ ├── libchdr_flac.c │ │ │ ├── libchdr_huffman.c │ │ │ └── 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 │ │ │ ├── Lzma86Enc.c │ │ │ ├── LzmaDec.c │ │ │ ├── LzmaEnc.c │ │ │ └── Sort.c │ └── zlib-1.2.11 │ │ ├── README │ │ ├── adler32.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── 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 │ │ └── vfs │ │ │ ├── vfs.h │ │ │ ├── vfs_implementation.h │ │ │ └── vfs_implementation_cdrom.h │ ├── lists │ │ ├── dir_list.c │ │ └── string_list.c │ ├── memmap │ │ ├── memalign.c │ │ └── memmap.c │ ├── streams │ │ ├── file_stream.c │ │ └── file_stream_transforms.c │ ├── string │ │ └── stdstring.c │ └── vfs │ │ ├── vfs_implementation.c │ │ ├── vfs_implementation_cdrom.c │ │ └── vfs_implementation_uwp.cpp ├── libretro.c ├── libretro_core_options.h ├── libretro_core_options_intl.h ├── libretro_msvc │ ├── genesis_plus_gx_libretro.vcxproj │ ├── genesis_plus_gx_libretro.vcxproj.filters │ ├── genesis_plus_gx_libretro.vcxproj.user │ ├── libretro_msvc.sln │ ├── msvc-2017.sln │ └── msvc-2017 │ │ ├── msvc-2017.vcxproj │ │ └── msvc-2017.vcxproj.filters ├── link.T ├── msvc │ ├── gx_vstudio.vcxproj │ ├── gx_vstudio.vcxproj.filters │ ├── gx_vstudio.vcxproj.user │ ├── libretro.def │ ├── msvc-2017.sln │ └── msvc-2017 │ │ ├── msvc-2017.vcxproj │ │ └── msvc-2017.vcxproj.filters ├── osd.h ├── scrc32.h └── uwp │ └── uwp_async.h ├── psp2 ├── Makefile ├── config.c ├── config.h ├── db.json ├── emumain.c ├── emumain.h ├── error.c ├── error.h ├── fileio.c ├── fileio.h ├── main.c ├── main.h ├── menu.c ├── menu.h ├── osd.h ├── unzip.c └── unzip.h ├── sdl ├── CHANGELOG.txt ├── Makefile.sdl1 ├── Makefile.sdl2 ├── README.txt ├── config.c ├── config.h ├── error.c ├── error.h ├── fileio.c ├── fileio.h ├── gx_vstudio │ ├── deps │ │ ├── SDL2 │ │ │ └── .put_sdl2_devel_here │ │ └── zlib │ │ │ ├── x64 │ │ │ └── .put_lib_files_here │ │ │ └── x86 │ │ │ └── .put_lib_files_here │ ├── gx_vstudio.sln │ ├── gx_vstudio.vcxproj │ ├── gx_vstudio.vcxproj.filters │ └── gx_vstudio.vcxproj.user ├── icon.rc ├── md.ico ├── osd.h ├── readme-sdl.txt ├── sdl1 │ ├── main.c │ └── main.h ├── sdl2 │ ├── main.c │ └── main.h ├── unzip.c └── unzip.h └── wiki ├── Compatibility.md ├── Credits.md ├── Features.md ├── Frequently Asked Questions.md └── Getting Started.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/HISTORY.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile.gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/Makefile.gc -------------------------------------------------------------------------------- /Makefile.libretro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/Makefile.libretro -------------------------------------------------------------------------------- /Makefile.wii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/Makefile.wii -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/appveyor.yml -------------------------------------------------------------------------------- /core/cart_hw/areplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/areplay.c -------------------------------------------------------------------------------- /core/cart_hw/areplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/areplay.h -------------------------------------------------------------------------------- /core/cart_hw/eeprom_93c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/eeprom_93c.c -------------------------------------------------------------------------------- /core/cart_hw/eeprom_93c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/eeprom_93c.h -------------------------------------------------------------------------------- /core/cart_hw/eeprom_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/eeprom_i2c.c -------------------------------------------------------------------------------- /core/cart_hw/eeprom_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/eeprom_i2c.h -------------------------------------------------------------------------------- /core/cart_hw/eeprom_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/eeprom_spi.c -------------------------------------------------------------------------------- /core/cart_hw/eeprom_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/eeprom_spi.h -------------------------------------------------------------------------------- /core/cart_hw/ggenie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/ggenie.c -------------------------------------------------------------------------------- /core/cart_hw/ggenie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/ggenie.h -------------------------------------------------------------------------------- /core/cart_hw/md_cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/md_cart.c -------------------------------------------------------------------------------- /core/cart_hw/md_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/md_cart.h -------------------------------------------------------------------------------- /core/cart_hw/megasd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/megasd.c -------------------------------------------------------------------------------- /core/cart_hw/megasd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/megasd.h -------------------------------------------------------------------------------- /core/cart_hw/sms_cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/sms_cart.c -------------------------------------------------------------------------------- /core/cart_hw/sms_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/sms_cart.h -------------------------------------------------------------------------------- /core/cart_hw/sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/sram.c -------------------------------------------------------------------------------- /core/cart_hw/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/sram.h -------------------------------------------------------------------------------- /core/cart_hw/svp/imageformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/svp/imageformat.txt -------------------------------------------------------------------------------- /core/cart_hw/svp/ssp16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/svp/ssp16.c -------------------------------------------------------------------------------- /core/cart_hw/svp/ssp16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/svp/ssp16.h -------------------------------------------------------------------------------- /core/cart_hw/svp/svp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/svp/svp.c -------------------------------------------------------------------------------- /core/cart_hw/svp/svp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/svp/svp.h -------------------------------------------------------------------------------- /core/cart_hw/svp/svpdoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cart_hw/svp/svpdoc.txt -------------------------------------------------------------------------------- /core/cd_hw/cd_cart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/cd_cart.c -------------------------------------------------------------------------------- /core/cd_hw/cd_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/cd_cart.h -------------------------------------------------------------------------------- /core/cd_hw/cdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/cdc.c -------------------------------------------------------------------------------- /core/cd_hw/cdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/cdc.h -------------------------------------------------------------------------------- /core/cd_hw/cdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/cdd.c -------------------------------------------------------------------------------- /core/cd_hw/cdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/cdd.h -------------------------------------------------------------------------------- /core/cd_hw/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/gfx.c -------------------------------------------------------------------------------- /core/cd_hw/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/gfx.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/LICENSE.txt -------------------------------------------------------------------------------- /core/cd_hw/libchdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/README.md -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/AUTHORS -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/COPYING.Xiph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/COPYING.Xiph -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/README -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/bitmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/bitmath.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/bitreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/bitreader.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/cpu.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/crc.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/fixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/fixed.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/float.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/format.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/assert.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/callback.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/export.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/format.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/metadata.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/ordinals.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/FLAC/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/FLAC/stream_decoder.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/bitmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/bitmath.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/bitreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/bitreader.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/cpu.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/crc.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/fixed.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/float.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/format.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/lpc.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/macros.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/md5.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/private/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/private/memory.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/protected/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/protected/stream_decoder.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/share/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/share/alloc.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/share/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/share/compat.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/include/share/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/include/share/endswap.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/lpc.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_avx2.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_sse.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_sse2.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_sse41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/lpc_intrin_sse41.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/md5.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/memory.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/libFLAC/stream_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/libFLAC/stream_decoder.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/7zTypes.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/Compiler.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/DOC/lzma-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/DOC/lzma-history.txt -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/DOC/lzma-sdk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/DOC/lzma-sdk.txt -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/DOC/lzma-specification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/DOC/lzma-specification.txt -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/DOC/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/DOC/lzma.txt -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzFind.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzFind.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzHash.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzmaDec.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzmaDec.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/lzma/Precomp.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/ChangeLog -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/README -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/adler32.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/gzguts.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inffast.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inffast.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inffixed.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inflate.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inflate.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inftrees.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/inftrees.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/zconf.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/zlib.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/zutil.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/deps/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/deps/zlib/zutil.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/bitstream.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/bitstream.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/cdrom.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/cdrom.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/chd.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/chd.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/coretypes.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/flac.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/flac.h -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/huffman.c -------------------------------------------------------------------------------- /core/cd_hw/libchdr/src/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/libchdr/src/huffman.h -------------------------------------------------------------------------------- /core/cd_hw/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/pcm.c -------------------------------------------------------------------------------- /core/cd_hw/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/pcm.h -------------------------------------------------------------------------------- /core/cd_hw/scd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/scd.c -------------------------------------------------------------------------------- /core/cd_hw/scd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/cd_hw/scd.h -------------------------------------------------------------------------------- /core/debug/cpuhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/debug/cpuhook.c -------------------------------------------------------------------------------- /core/debug/cpuhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/debug/cpuhook.h -------------------------------------------------------------------------------- /core/genesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/genesis.c -------------------------------------------------------------------------------- /core/genesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/genesis.h -------------------------------------------------------------------------------- /core/hvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/hvc.h -------------------------------------------------------------------------------- /core/input_hw/activator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/activator.c -------------------------------------------------------------------------------- /core/input_hw/activator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/activator.h -------------------------------------------------------------------------------- /core/input_hw/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/gamepad.c -------------------------------------------------------------------------------- /core/input_hw/gamepad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/gamepad.h -------------------------------------------------------------------------------- /core/input_hw/graphic_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/graphic_board.c -------------------------------------------------------------------------------- /core/input_hw/graphic_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/graphic_board.h -------------------------------------------------------------------------------- /core/input_hw/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/input.c -------------------------------------------------------------------------------- /core/input_hw/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/input.h -------------------------------------------------------------------------------- /core/input_hw/lightgun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/lightgun.c -------------------------------------------------------------------------------- /core/input_hw/lightgun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/lightgun.h -------------------------------------------------------------------------------- /core/input_hw/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/mouse.c -------------------------------------------------------------------------------- /core/input_hw/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/mouse.h -------------------------------------------------------------------------------- /core/input_hw/paddle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/paddle.c -------------------------------------------------------------------------------- /core/input_hw/paddle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/paddle.h -------------------------------------------------------------------------------- /core/input_hw/sportspad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/sportspad.c -------------------------------------------------------------------------------- /core/input_hw/sportspad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/sportspad.h -------------------------------------------------------------------------------- /core/input_hw/teamplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/teamplayer.c -------------------------------------------------------------------------------- /core/input_hw/teamplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/teamplayer.h -------------------------------------------------------------------------------- /core/input_hw/terebi_oekaki.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/terebi_oekaki.c -------------------------------------------------------------------------------- /core/input_hw/terebi_oekaki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/terebi_oekaki.h -------------------------------------------------------------------------------- /core/input_hw/xe_1ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/xe_1ap.c -------------------------------------------------------------------------------- /core/input_hw/xe_1ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/input_hw/xe_1ap.h -------------------------------------------------------------------------------- /core/io_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/io_ctrl.c -------------------------------------------------------------------------------- /core/io_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/io_ctrl.h -------------------------------------------------------------------------------- /core/loadrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/loadrom.c -------------------------------------------------------------------------------- /core/loadrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/loadrom.h -------------------------------------------------------------------------------- /core/m68k/m68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68k.h -------------------------------------------------------------------------------- /core/m68k/m68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68kconf.h -------------------------------------------------------------------------------- /core/m68k/m68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68kcpu.c -------------------------------------------------------------------------------- /core/m68k/m68kcpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68kcpu.h -------------------------------------------------------------------------------- /core/m68k/m68ki_cycles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68ki_cycles.h -------------------------------------------------------------------------------- /core/m68k/m68ki_instruction_jump_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68ki_instruction_jump_table.h -------------------------------------------------------------------------------- /core/m68k/m68kops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/m68kops.h -------------------------------------------------------------------------------- /core/m68k/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/readme.txt -------------------------------------------------------------------------------- /core/m68k/s68kconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/s68kconf.h -------------------------------------------------------------------------------- /core/m68k/s68kcpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/s68kcpu.c -------------------------------------------------------------------------------- /core/m68k/s68ki_cycles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/m68k/s68ki_cycles.h -------------------------------------------------------------------------------- /core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/macros.h -------------------------------------------------------------------------------- /core/mem68k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/mem68k.c -------------------------------------------------------------------------------- /core/mem68k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/mem68k.h -------------------------------------------------------------------------------- /core/membnk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/membnk.c -------------------------------------------------------------------------------- /core/membnk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/membnk.h -------------------------------------------------------------------------------- /core/memz80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/memz80.c -------------------------------------------------------------------------------- /core/memz80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/memz80.h -------------------------------------------------------------------------------- /core/ntsc/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/changes.txt -------------------------------------------------------------------------------- /core/ntsc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/license.txt -------------------------------------------------------------------------------- /core/ntsc/md_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/md_ntsc.c -------------------------------------------------------------------------------- /core/ntsc/md_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/md_ntsc.h -------------------------------------------------------------------------------- /core/ntsc/md_ntsc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/md_ntsc_config.h -------------------------------------------------------------------------------- /core/ntsc/md_ntsc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/md_ntsc_impl.h -------------------------------------------------------------------------------- /core/ntsc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/readme.txt -------------------------------------------------------------------------------- /core/ntsc/sms_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/sms_ntsc.c -------------------------------------------------------------------------------- /core/ntsc/sms_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/sms_ntsc.h -------------------------------------------------------------------------------- /core/ntsc/sms_ntsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/sms_ntsc.txt -------------------------------------------------------------------------------- /core/ntsc/sms_ntsc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/sms_ntsc_config.h -------------------------------------------------------------------------------- /core/ntsc/sms_ntsc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/ntsc/sms_ntsc_impl.h -------------------------------------------------------------------------------- /core/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/shared.h -------------------------------------------------------------------------------- /core/sound/blip_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/blip_buf.c -------------------------------------------------------------------------------- /core/sound/blip_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/blip_buf.h -------------------------------------------------------------------------------- /core/sound/eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/eq.c -------------------------------------------------------------------------------- /core/sound/eq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/eq.h -------------------------------------------------------------------------------- /core/sound/opll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/opll.c -------------------------------------------------------------------------------- /core/sound/opll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/opll.h -------------------------------------------------------------------------------- /core/sound/psg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/psg.c -------------------------------------------------------------------------------- /core/sound/psg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/psg.h -------------------------------------------------------------------------------- /core/sound/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/sound.c -------------------------------------------------------------------------------- /core/sound/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/sound.h -------------------------------------------------------------------------------- /core/sound/ym2413.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/ym2413.c -------------------------------------------------------------------------------- /core/sound/ym2413.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/ym2413.h -------------------------------------------------------------------------------- /core/sound/ym2612.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/ym2612.c -------------------------------------------------------------------------------- /core/sound/ym2612.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/ym2612.h -------------------------------------------------------------------------------- /core/sound/ym3438.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/ym3438.c -------------------------------------------------------------------------------- /core/sound/ym3438.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/sound/ym3438.h -------------------------------------------------------------------------------- /core/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/state.c -------------------------------------------------------------------------------- /core/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/state.h -------------------------------------------------------------------------------- /core/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/system.c -------------------------------------------------------------------------------- /core/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/system.h -------------------------------------------------------------------------------- /core/tremor/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/CHANGELOG -------------------------------------------------------------------------------- /core/tremor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/COPYING -------------------------------------------------------------------------------- /core/tremor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/README -------------------------------------------------------------------------------- /core/tremor/Version_script.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/Version_script.in -------------------------------------------------------------------------------- /core/tremor/asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/asm_arm.h -------------------------------------------------------------------------------- /core/tremor/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/backends.h -------------------------------------------------------------------------------- /core/tremor/bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/bitwise.c -------------------------------------------------------------------------------- /core/tremor/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/block.c -------------------------------------------------------------------------------- /core/tremor/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/block.h -------------------------------------------------------------------------------- /core/tremor/codebook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/codebook.c -------------------------------------------------------------------------------- /core/tremor/codebook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/codebook.h -------------------------------------------------------------------------------- /core/tremor/codec_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/codec_internal.h -------------------------------------------------------------------------------- /core/tremor/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/config_types.h -------------------------------------------------------------------------------- /core/tremor/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/configure.in -------------------------------------------------------------------------------- /core/tremor/floor0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/floor0.c -------------------------------------------------------------------------------- /core/tremor/floor1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/floor1.c -------------------------------------------------------------------------------- /core/tremor/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/framing.c -------------------------------------------------------------------------------- /core/tremor/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/info.c -------------------------------------------------------------------------------- /core/tremor/ivorbiscodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/ivorbiscodec.h -------------------------------------------------------------------------------- /core/tremor/ivorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/ivorbisfile.h -------------------------------------------------------------------------------- /core/tremor/lsp_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/lsp_lookup.h -------------------------------------------------------------------------------- /core/tremor/mapping0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/mapping0.c -------------------------------------------------------------------------------- /core/tremor/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/mdct.c -------------------------------------------------------------------------------- /core/tremor/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/mdct.h -------------------------------------------------------------------------------- /core/tremor/mdct_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/mdct_lookup.h -------------------------------------------------------------------------------- /core/tremor/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/misc.h -------------------------------------------------------------------------------- /core/tremor/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/ogg.h -------------------------------------------------------------------------------- /core/tremor/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/os.h -------------------------------------------------------------------------------- /core/tremor/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/os_types.h -------------------------------------------------------------------------------- /core/tremor/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/registry.c -------------------------------------------------------------------------------- /core/tremor/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/registry.h -------------------------------------------------------------------------------- /core/tremor/res012.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/res012.c -------------------------------------------------------------------------------- /core/tremor/sharedbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/sharedbook.c -------------------------------------------------------------------------------- /core/tremor/synthesis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/synthesis.c -------------------------------------------------------------------------------- /core/tremor/vorbisfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/vorbisfile.c -------------------------------------------------------------------------------- /core/tremor/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/window.c -------------------------------------------------------------------------------- /core/tremor/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/window.h -------------------------------------------------------------------------------- /core/tremor/window_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/tremor/window_lookup.h -------------------------------------------------------------------------------- /core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/types.h -------------------------------------------------------------------------------- /core/vdp_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/vdp_ctrl.c -------------------------------------------------------------------------------- /core/vdp_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/vdp_ctrl.h -------------------------------------------------------------------------------- /core/vdp_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/vdp_render.c -------------------------------------------------------------------------------- /core/vdp_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/vdp_render.h -------------------------------------------------------------------------------- /core/z80/osd_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/z80/osd_cpu.h -------------------------------------------------------------------------------- /core/z80/z80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/z80/z80.c -------------------------------------------------------------------------------- /core/z80/z80.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/core/z80/z80.h -------------------------------------------------------------------------------- /gcw0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/Makefile -------------------------------------------------------------------------------- /gcw0/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/config.c -------------------------------------------------------------------------------- /gcw0/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/config.h -------------------------------------------------------------------------------- /gcw0/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/error.c -------------------------------------------------------------------------------- /gcw0/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/error.h -------------------------------------------------------------------------------- /gcw0/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/fileio.c -------------------------------------------------------------------------------- /gcw0/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/fileio.h -------------------------------------------------------------------------------- /gcw0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/main.c -------------------------------------------------------------------------------- /gcw0/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/main.h -------------------------------------------------------------------------------- /gcw0/opk-data/CLASSIC_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/CLASSIC_01.png -------------------------------------------------------------------------------- /gcw0/opk-data/CLASSIC_01_RED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/CLASSIC_01_RED.png -------------------------------------------------------------------------------- /gcw0/opk-data/CLASSIC_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/CLASSIC_02.png -------------------------------------------------------------------------------- /gcw0/opk-data/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/GG.png -------------------------------------------------------------------------------- /gcw0/opk-data/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/LICENSE.txt -------------------------------------------------------------------------------- /gcw0/opk-data/MCD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/MCD.png -------------------------------------------------------------------------------- /gcw0/opk-data/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/MD.png -------------------------------------------------------------------------------- /gcw0/opk-data/PICO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/PICO.png -------------------------------------------------------------------------------- /gcw0/opk-data/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/ProggyTiny.ttf -------------------------------------------------------------------------------- /gcw0/opk-data/SG1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/SG1000.png -------------------------------------------------------------------------------- /gcw0/opk-data/SMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/SMS.png -------------------------------------------------------------------------------- /gcw0/opk-data/SQUARE_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/SQUARE_02.png -------------------------------------------------------------------------------- /gcw0/opk-data/default.gcw0.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/default.gcw0.desktop -------------------------------------------------------------------------------- /gcw0/opk-data/gcw0readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/gcw0readme.txt -------------------------------------------------------------------------------- /gcw0/opk-data/scanlines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk-data/scanlines.png -------------------------------------------------------------------------------- /gcw0/opk_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/opk_build.sh -------------------------------------------------------------------------------- /gcw0/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/osd.h -------------------------------------------------------------------------------- /gcw0/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/unzip.c -------------------------------------------------------------------------------- /gcw0/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/unzip.h -------------------------------------------------------------------------------- /gcw0/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/utils.c -------------------------------------------------------------------------------- /gcw0/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gcw0/utils.h -------------------------------------------------------------------------------- /gx/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/config.c -------------------------------------------------------------------------------- /gx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/config.h -------------------------------------------------------------------------------- /gx/docs/README.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/docs/README.doc -------------------------------------------------------------------------------- /gx/docs/README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/docs/README.pdf -------------------------------------------------------------------------------- /gx/fileio/file_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/file_load.c -------------------------------------------------------------------------------- /gx/fileio/file_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/file_load.h -------------------------------------------------------------------------------- /gx/fileio/file_slot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/file_slot.c -------------------------------------------------------------------------------- /gx/fileio/file_slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/file_slot.h -------------------------------------------------------------------------------- /gx/fileio/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/fileio.c -------------------------------------------------------------------------------- /gx/fileio/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/fileio.h -------------------------------------------------------------------------------- /gx/fileio/history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/history.c -------------------------------------------------------------------------------- /gx/fileio/history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/fileio/history.h -------------------------------------------------------------------------------- /gx/gui/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/cheats.c -------------------------------------------------------------------------------- /gx/gui/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/cheats.h -------------------------------------------------------------------------------- /gx/gui/filesel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/filesel.c -------------------------------------------------------------------------------- /gx/gui/filesel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/filesel.h -------------------------------------------------------------------------------- /gx/gui/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/font.c -------------------------------------------------------------------------------- /gx/gui/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/font.h -------------------------------------------------------------------------------- /gx/gui/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/gui.c -------------------------------------------------------------------------------- /gx/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/gui.h -------------------------------------------------------------------------------- /gx/gui/legal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/legal.c -------------------------------------------------------------------------------- /gx/gui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/menu.c -------------------------------------------------------------------------------- /gx/gui/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/menu.h -------------------------------------------------------------------------------- /gx/gui/saveicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gui/saveicon.h -------------------------------------------------------------------------------- /gx/gx_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gx_audio.c -------------------------------------------------------------------------------- /gx/gx_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gx_audio.h -------------------------------------------------------------------------------- /gx/gx_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gx_input.c -------------------------------------------------------------------------------- /gx/gx_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gx_input.h -------------------------------------------------------------------------------- /gx/gx_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gx_video.c -------------------------------------------------------------------------------- /gx/gx_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/gx_video.h -------------------------------------------------------------------------------- /gx/images/Banner_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Banner_bottom.png -------------------------------------------------------------------------------- /gx/images/Banner_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Banner_main.png -------------------------------------------------------------------------------- /gx/images/Banner_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Banner_top.png -------------------------------------------------------------------------------- /gx/images/Bg_credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_credits.png -------------------------------------------------------------------------------- /gx/images/Bg_intro_c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_intro_c1.png -------------------------------------------------------------------------------- /gx/images/Bg_intro_c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_intro_c2.png -------------------------------------------------------------------------------- /gx/images/Bg_intro_c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_intro_c3.png -------------------------------------------------------------------------------- /gx/images/Bg_intro_c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_intro_c4.png -------------------------------------------------------------------------------- /gx/images/Bg_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_layer.png -------------------------------------------------------------------------------- /gx/images/Bg_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Bg_overlay.png -------------------------------------------------------------------------------- /gx/images/Browser_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Browser_dir.png -------------------------------------------------------------------------------- /gx/images/Button_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_arrow.png -------------------------------------------------------------------------------- /gx/images/Button_arrow_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_arrow_over.png -------------------------------------------------------------------------------- /gx/images/Button_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_delete.png -------------------------------------------------------------------------------- /gx/images/Button_delete_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_delete_over.png -------------------------------------------------------------------------------- /gx/images/Button_digit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_digit.png -------------------------------------------------------------------------------- /gx/images/Button_digit_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_digit_over.png -------------------------------------------------------------------------------- /gx/images/Button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_down.png -------------------------------------------------------------------------------- /gx/images/Button_down_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_down_over.png -------------------------------------------------------------------------------- /gx/images/Button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_icon.png -------------------------------------------------------------------------------- /gx/images/Button_icon_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_icon_over.png -------------------------------------------------------------------------------- /gx/images/Button_icon_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_icon_sm.png -------------------------------------------------------------------------------- /gx/images/Button_icon_sm_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_icon_sm_over.png -------------------------------------------------------------------------------- /gx/images/Button_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_load.png -------------------------------------------------------------------------------- /gx/images/Button_load_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_load_over.png -------------------------------------------------------------------------------- /gx/images/Button_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_save.png -------------------------------------------------------------------------------- /gx/images/Button_save_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_save_over.png -------------------------------------------------------------------------------- /gx/images/Button_sm_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_sm_blue.png -------------------------------------------------------------------------------- /gx/images/Button_sm_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_sm_grey.png -------------------------------------------------------------------------------- /gx/images/Button_sm_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_sm_yellow.png -------------------------------------------------------------------------------- /gx/images/Button_special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_special.png -------------------------------------------------------------------------------- /gx/images/Button_special_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_special_over.png -------------------------------------------------------------------------------- /gx/images/Button_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_text.png -------------------------------------------------------------------------------- /gx/images/Button_text_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_text_over.png -------------------------------------------------------------------------------- /gx/images/Button_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_up.png -------------------------------------------------------------------------------- /gx/images/Button_up_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Button_up_over.png -------------------------------------------------------------------------------- /gx/images/CD_access_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/CD_access_off.png -------------------------------------------------------------------------------- /gx/images/CD_access_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/CD_access_on.png -------------------------------------------------------------------------------- /gx/images/CD_ready_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/CD_ready_off.png -------------------------------------------------------------------------------- /gx/images/CD_ready_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/CD_ready_on.png -------------------------------------------------------------------------------- /gx/images/Cart_gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Cart_gg.png -------------------------------------------------------------------------------- /gx/images/Cart_md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Cart_md.png -------------------------------------------------------------------------------- /gx/images/Cart_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Cart_ms.png -------------------------------------------------------------------------------- /gx/images/Cart_sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Cart_sg.png -------------------------------------------------------------------------------- /gx/images/Crosshair_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Crosshair_p1.png -------------------------------------------------------------------------------- /gx/images/Crosshair_p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Crosshair_p2.png -------------------------------------------------------------------------------- /gx/images/Ctrl_4wayplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_4wayplay.png -------------------------------------------------------------------------------- /gx/images/Ctrl_activator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_activator.png -------------------------------------------------------------------------------- /gx/images/Ctrl_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_config.png -------------------------------------------------------------------------------- /gx/images/Ctrl_gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_gamepad.png -------------------------------------------------------------------------------- /gx/images/Ctrl_graphic_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_graphic_board.png -------------------------------------------------------------------------------- /gx/images/Ctrl_justifiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_justifiers.png -------------------------------------------------------------------------------- /gx/images/Ctrl_lightphaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_lightphaser.png -------------------------------------------------------------------------------- /gx/images/Ctrl_mastertap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_mastertap.png -------------------------------------------------------------------------------- /gx/images/Ctrl_menacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_menacer.png -------------------------------------------------------------------------------- /gx/images/Ctrl_mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_mouse.png -------------------------------------------------------------------------------- /gx/images/Ctrl_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_none.png -------------------------------------------------------------------------------- /gx/images/Ctrl_pad2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_pad2b.png -------------------------------------------------------------------------------- /gx/images/Ctrl_pad3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_pad3b.png -------------------------------------------------------------------------------- /gx/images/Ctrl_pad6b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_pad6b.png -------------------------------------------------------------------------------- /gx/images/Ctrl_pad_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_pad_auto.png -------------------------------------------------------------------------------- /gx/images/Ctrl_paddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_paddle.png -------------------------------------------------------------------------------- /gx/images/Ctrl_sportspad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_sportspad.png -------------------------------------------------------------------------------- /gx/images/Ctrl_teamplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_teamplayer.png -------------------------------------------------------------------------------- /gx/images/Ctrl_xe_1ap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Ctrl_xe_1ap.png -------------------------------------------------------------------------------- /gx/images/Frame_s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Frame_s1.png -------------------------------------------------------------------------------- /gx/images/Frame_s1_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Frame_s1_title.png -------------------------------------------------------------------------------- /gx/images/Frame_s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Frame_s2.png -------------------------------------------------------------------------------- /gx/images/Frame_s2_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Frame_s2_title.png -------------------------------------------------------------------------------- /gx/images/Frame_s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Frame_s3.png -------------------------------------------------------------------------------- /gx/images/Frame_throbber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Frame_throbber.png -------------------------------------------------------------------------------- /gx/images/Key_A_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_A_gcn.png -------------------------------------------------------------------------------- /gx/images/Key_A_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_A_wii.png -------------------------------------------------------------------------------- /gx/images/Key_B_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_B_gcn.png -------------------------------------------------------------------------------- /gx/images/Key_B_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_B_wii.png -------------------------------------------------------------------------------- /gx/images/Key_DPAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_DPAD.png -------------------------------------------------------------------------------- /gx/images/Key_L_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_L_gcn.png -------------------------------------------------------------------------------- /gx/images/Key_Minus_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_Minus_wii.png -------------------------------------------------------------------------------- /gx/images/Key_Plus_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_Plus_wii.png -------------------------------------------------------------------------------- /gx/images/Key_R_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Key_R_gcn.png -------------------------------------------------------------------------------- /gx/images/Load_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Load_cd.png -------------------------------------------------------------------------------- /gx/images/Load_gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Load_gg.png -------------------------------------------------------------------------------- /gx/images/Load_md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Load_md.png -------------------------------------------------------------------------------- /gx/images/Load_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Load_ms.png -------------------------------------------------------------------------------- /gx/images/Load_recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Load_recent.png -------------------------------------------------------------------------------- /gx/images/Load_sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Load_sg.png -------------------------------------------------------------------------------- /gx/images/Main_cheats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_cheats.png -------------------------------------------------------------------------------- /gx/images/Main_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_file.png -------------------------------------------------------------------------------- /gx/images/Main_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_load.png -------------------------------------------------------------------------------- /gx/images/Main_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_logo.png -------------------------------------------------------------------------------- /gx/images/Main_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_options.png -------------------------------------------------------------------------------- /gx/images/Main_play_gcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_play_gcn.png -------------------------------------------------------------------------------- /gx/images/Main_play_wii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_play_wii.png -------------------------------------------------------------------------------- /gx/images/Main_quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_quit.png -------------------------------------------------------------------------------- /gx/images/Main_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_reset.png -------------------------------------------------------------------------------- /gx/images/Main_showinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_showinfo.png -------------------------------------------------------------------------------- /gx/images/Main_takeshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Main_takeshot.png -------------------------------------------------------------------------------- /gx/images/Option_ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Option_ctrl.png -------------------------------------------------------------------------------- /gx/images/Option_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Option_menu.png -------------------------------------------------------------------------------- /gx/images/Option_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Option_sound.png -------------------------------------------------------------------------------- /gx/images/Option_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Option_system.png -------------------------------------------------------------------------------- /gx/images/Option_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Option_video.png -------------------------------------------------------------------------------- /gx/images/Overlay_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Overlay_bar.png -------------------------------------------------------------------------------- /gx/images/Snap_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Snap_empty.png -------------------------------------------------------------------------------- /gx/images/Star_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Star_empty.png -------------------------------------------------------------------------------- /gx/images/Star_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/Star_full.png -------------------------------------------------------------------------------- /gx/images/ctrl_classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_classic.png -------------------------------------------------------------------------------- /gx/images/ctrl_gamecube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_gamecube.png -------------------------------------------------------------------------------- /gx/images/ctrl_nunchuk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_nunchuk.png -------------------------------------------------------------------------------- /gx/images/ctrl_option_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_option_off.png -------------------------------------------------------------------------------- /gx/images/ctrl_option_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_option_on.png -------------------------------------------------------------------------------- /gx/images/ctrl_wiimote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_wiimote.png -------------------------------------------------------------------------------- /gx/images/ctrl_wiiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/ctrl_wiiu.png -------------------------------------------------------------------------------- /gx/images/generic_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/images/generic_point.png -------------------------------------------------------------------------------- /gx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/main.c -------------------------------------------------------------------------------- /gx/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/osd.h -------------------------------------------------------------------------------- /gx/sounds/button_over.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/sounds/button_over.pcm -------------------------------------------------------------------------------- /gx/sounds/button_select.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/sounds/button_select.pcm -------------------------------------------------------------------------------- /gx/sounds/intro.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/sounds/intro.pcm -------------------------------------------------------------------------------- /gx/utils/oggplayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/oggplayer.c -------------------------------------------------------------------------------- /gx/utils/oggplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/oggplayer.h -------------------------------------------------------------------------------- /gx/utils/vi_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/vi_encoder.c -------------------------------------------------------------------------------- /gx/utils/vi_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/vi_encoder.h -------------------------------------------------------------------------------- /gx/utils/wiidrc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/wiidrc/LICENSE -------------------------------------------------------------------------------- /gx/utils/wiidrc/wiidrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/wiidrc/wiidrc.c -------------------------------------------------------------------------------- /gx/utils/wiidrc/wiidrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/wiidrc/wiidrc.h -------------------------------------------------------------------------------- /gx/utils/wiidrc/wiidrc_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/gx/utils/wiidrc/wiidrc_structs.h -------------------------------------------------------------------------------- /intl/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | crowdin-cli.jar 3 | *.h 4 | *.json 5 | -------------------------------------------------------------------------------- /intl/core_option_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/core_option_regex.py -------------------------------------------------------------------------------- /intl/core_option_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/core_option_translation.py -------------------------------------------------------------------------------- /intl/crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/crowdin.yaml -------------------------------------------------------------------------------- /intl/crowdin_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/crowdin_prep.py -------------------------------------------------------------------------------- /intl/crowdin_source_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/crowdin_source_upload.py -------------------------------------------------------------------------------- /intl/crowdin_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/crowdin_translate.py -------------------------------------------------------------------------------- /intl/crowdin_translation_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/crowdin_translation_download.py -------------------------------------------------------------------------------- /intl/download_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/download_workflow.py -------------------------------------------------------------------------------- /intl/initial_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/initial_sync.py -------------------------------------------------------------------------------- /intl/remove_initial_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/remove_initial_cycle.py -------------------------------------------------------------------------------- /intl/upload_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/intl/upload_workflow.py -------------------------------------------------------------------------------- /libretro/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/Makefile.common -------------------------------------------------------------------------------- /libretro/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/debian/changelog -------------------------------------------------------------------------------- /libretro/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /libretro/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/debian/control -------------------------------------------------------------------------------- /libretro/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/debian/copyright -------------------------------------------------------------------------------- /libretro/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/debian/dirs -------------------------------------------------------------------------------- /libretro/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/debian/rules -------------------------------------------------------------------------------- /libretro/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /libretro/deps/libchdr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/CMakeLists.txt -------------------------------------------------------------------------------- /libretro/deps/libchdr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/LICENSE.txt -------------------------------------------------------------------------------- /libretro/deps/libchdr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/README.md -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/dr_libs/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/dr_libs/dr_flac.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/bitstream.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/cdrom.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/chd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/chd.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/chdconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/chdconfig.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/coretypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/coretypes.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/flac.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/include/libchdr/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/include/libchdr/huffman.h -------------------------------------------------------------------------------- /libretro/deps/libchdr/src/libchdr_bitstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/src/libchdr_bitstream.c -------------------------------------------------------------------------------- /libretro/deps/libchdr/src/libchdr_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/src/libchdr_cdrom.c -------------------------------------------------------------------------------- /libretro/deps/libchdr/src/libchdr_chd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/src/libchdr_chd.c -------------------------------------------------------------------------------- /libretro/deps/libchdr/src/libchdr_flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/src/libchdr_flac.c -------------------------------------------------------------------------------- /libretro/deps/libchdr/src/libchdr_huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/src/libchdr_huffman.c -------------------------------------------------------------------------------- /libretro/deps/libchdr/src/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/libchdr/src/link.T -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/CMakeLists.txt -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/LICENSE -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/7zTypes.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Alloc.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Bra.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Compiler.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/CpuArch.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Delta.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/LzFind.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/LzHash.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Lzma86.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/LzmaDec.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/LzmaEnc.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/LzmaLib.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Precomp.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/include/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/include/Sort.h -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/lzma-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/lzma-history.txt -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/lzma.txt -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/lzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/lzma.vcxproj -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/lzma.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/lzma.vcxproj.filters -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/Alloc.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/Bra86.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/BraIA64.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/CpuArch.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/Delta.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/LzFind.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/Lzma86Dec.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/Lzma86Enc.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/LzmaDec.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/LzmaEnc.c -------------------------------------------------------------------------------- /libretro/deps/lzma-19.00/src/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/lzma-19.00/src/Sort.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/README -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/adler32.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/crc32.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/crc32.h -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/inffast.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/inffast.h -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/inflate.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/inflate.h -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/inftrees.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/inftrees.h -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/zconf.h -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/zlib.h -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/zutil.c -------------------------------------------------------------------------------- /libretro/deps/zlib-1.2.11/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/deps/zlib-1.2.11/zutil.h -------------------------------------------------------------------------------- /libretro/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/jni/Android.mk -------------------------------------------------------------------------------- /libretro/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /libretro/libretro-common/cdrom/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/cdrom/cdrom.c -------------------------------------------------------------------------------- /libretro/libretro-common/compat/compat_posix_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/compat/compat_posix_string.c -------------------------------------------------------------------------------- /libretro/libretro-common/compat/compat_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/compat/compat_snprintf.c -------------------------------------------------------------------------------- /libretro/libretro-common/compat/compat_strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/compat/compat_strcasestr.c -------------------------------------------------------------------------------- /libretro/libretro-common/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/compat/compat_strl.c -------------------------------------------------------------------------------- /libretro/libretro-common/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/compat/fopen_utf8.c -------------------------------------------------------------------------------- /libretro/libretro-common/encodings/encoding_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/encodings/encoding_utf.c -------------------------------------------------------------------------------- /libretro/libretro-common/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/file/file_path.c -------------------------------------------------------------------------------- /libretro/libretro-common/file/retro_dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/file/retro_dirent.c -------------------------------------------------------------------------------- /libretro/libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/cdrom/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/cdrom/cdrom.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/apple_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/apple_compat.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/fnmatch.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/fopen_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/fopen_utf8.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/getopt.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/ifaddrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/ifaddrs.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/intrinsics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/intrinsics.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/msvc.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/msvc/stdint.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/posix_string.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/strcasestr.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/strl.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/zconf.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/zconf.h.in -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/zlib.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/compat/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/compat/zutil.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/encodings/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/encodings/utf.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/file/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/file/file_path.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/lists/dir_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/lists/dir_list.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/lists/string_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/lists/string_list.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/memalign.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/memmap.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_assert.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_common.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_common_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_common_api.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_dirent.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_endianness.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_environment.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_inline.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_math.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_miscellaneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_miscellaneous.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/retro_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/retro_timers.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/streams/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/streams/file_stream.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/streams/file_stream_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/streams/file_stream_transforms.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/string/stdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/string/stdstring.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/vfs/vfs_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/vfs/vfs_implementation.h -------------------------------------------------------------------------------- /libretro/libretro-common/include/vfs/vfs_implementation_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/include/vfs/vfs_implementation_cdrom.h -------------------------------------------------------------------------------- /libretro/libretro-common/lists/dir_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/lists/dir_list.c -------------------------------------------------------------------------------- /libretro/libretro-common/lists/string_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/lists/string_list.c -------------------------------------------------------------------------------- /libretro/libretro-common/memmap/memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/memmap/memalign.c -------------------------------------------------------------------------------- /libretro/libretro-common/memmap/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/memmap/memmap.c -------------------------------------------------------------------------------- /libretro/libretro-common/streams/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/streams/file_stream.c -------------------------------------------------------------------------------- /libretro/libretro-common/streams/file_stream_transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/streams/file_stream_transforms.c -------------------------------------------------------------------------------- /libretro/libretro-common/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/string/stdstring.c -------------------------------------------------------------------------------- /libretro/libretro-common/vfs/vfs_implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/vfs/vfs_implementation.c -------------------------------------------------------------------------------- /libretro/libretro-common/vfs/vfs_implementation_cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/vfs/vfs_implementation_cdrom.c -------------------------------------------------------------------------------- /libretro/libretro-common/vfs/vfs_implementation_uwp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro-common/vfs/vfs_implementation_uwp.cpp -------------------------------------------------------------------------------- /libretro/libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro.c -------------------------------------------------------------------------------- /libretro/libretro_core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_core_options.h -------------------------------------------------------------------------------- /libretro/libretro_core_options_intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_core_options_intl.h -------------------------------------------------------------------------------- /libretro/libretro_msvc/genesis_plus_gx_libretro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/genesis_plus_gx_libretro.vcxproj -------------------------------------------------------------------------------- /libretro/libretro_msvc/genesis_plus_gx_libretro.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/genesis_plus_gx_libretro.vcxproj.filters -------------------------------------------------------------------------------- /libretro/libretro_msvc/genesis_plus_gx_libretro.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/genesis_plus_gx_libretro.vcxproj.user -------------------------------------------------------------------------------- /libretro/libretro_msvc/libretro_msvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/libretro_msvc.sln -------------------------------------------------------------------------------- /libretro/libretro_msvc/msvc-2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/msvc-2017.sln -------------------------------------------------------------------------------- /libretro/libretro_msvc/msvc-2017/msvc-2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/msvc-2017/msvc-2017.vcxproj -------------------------------------------------------------------------------- /libretro/libretro_msvc/msvc-2017/msvc-2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/libretro_msvc/msvc-2017/msvc-2017.vcxproj.filters -------------------------------------------------------------------------------- /libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/link.T -------------------------------------------------------------------------------- /libretro/msvc/gx_vstudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/gx_vstudio.vcxproj -------------------------------------------------------------------------------- /libretro/msvc/gx_vstudio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/gx_vstudio.vcxproj.filters -------------------------------------------------------------------------------- /libretro/msvc/gx_vstudio.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/gx_vstudio.vcxproj.user -------------------------------------------------------------------------------- /libretro/msvc/libretro.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/libretro.def -------------------------------------------------------------------------------- /libretro/msvc/msvc-2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/msvc-2017.sln -------------------------------------------------------------------------------- /libretro/msvc/msvc-2017/msvc-2017.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/msvc-2017/msvc-2017.vcxproj -------------------------------------------------------------------------------- /libretro/msvc/msvc-2017/msvc-2017.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/msvc/msvc-2017/msvc-2017.vcxproj.filters -------------------------------------------------------------------------------- /libretro/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/osd.h -------------------------------------------------------------------------------- /libretro/scrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/scrc32.h -------------------------------------------------------------------------------- /libretro/uwp/uwp_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/libretro/uwp/uwp_async.h -------------------------------------------------------------------------------- /psp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/Makefile -------------------------------------------------------------------------------- /psp2/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/config.c -------------------------------------------------------------------------------- /psp2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/config.h -------------------------------------------------------------------------------- /psp2/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/db.json -------------------------------------------------------------------------------- /psp2/emumain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/emumain.c -------------------------------------------------------------------------------- /psp2/emumain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/emumain.h -------------------------------------------------------------------------------- /psp2/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/error.c -------------------------------------------------------------------------------- /psp2/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/error.h -------------------------------------------------------------------------------- /psp2/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/fileio.c -------------------------------------------------------------------------------- /psp2/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/fileio.h -------------------------------------------------------------------------------- /psp2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/main.c -------------------------------------------------------------------------------- /psp2/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/main.h -------------------------------------------------------------------------------- /psp2/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/menu.c -------------------------------------------------------------------------------- /psp2/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/menu.h -------------------------------------------------------------------------------- /psp2/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/osd.h -------------------------------------------------------------------------------- /psp2/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/unzip.c -------------------------------------------------------------------------------- /psp2/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/psp2/unzip.h -------------------------------------------------------------------------------- /sdl/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/CHANGELOG.txt -------------------------------------------------------------------------------- /sdl/Makefile.sdl1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/Makefile.sdl1 -------------------------------------------------------------------------------- /sdl/Makefile.sdl2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/Makefile.sdl2 -------------------------------------------------------------------------------- /sdl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/README.txt -------------------------------------------------------------------------------- /sdl/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/config.c -------------------------------------------------------------------------------- /sdl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/config.h -------------------------------------------------------------------------------- /sdl/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/error.c -------------------------------------------------------------------------------- /sdl/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/error.h -------------------------------------------------------------------------------- /sdl/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/fileio.c -------------------------------------------------------------------------------- /sdl/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/fileio.h -------------------------------------------------------------------------------- /sdl/gx_vstudio/deps/SDL2/.put_sdl2_devel_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdl/gx_vstudio/deps/zlib/x64/.put_lib_files_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdl/gx_vstudio/deps/zlib/x86/.put_lib_files_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdl/gx_vstudio/gx_vstudio.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/gx_vstudio/gx_vstudio.sln -------------------------------------------------------------------------------- /sdl/gx_vstudio/gx_vstudio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/gx_vstudio/gx_vstudio.vcxproj -------------------------------------------------------------------------------- /sdl/gx_vstudio/gx_vstudio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/gx_vstudio/gx_vstudio.vcxproj.filters -------------------------------------------------------------------------------- /sdl/gx_vstudio/gx_vstudio.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/gx_vstudio/gx_vstudio.vcxproj.user -------------------------------------------------------------------------------- /sdl/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/icon.rc -------------------------------------------------------------------------------- /sdl/md.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/md.ico -------------------------------------------------------------------------------- /sdl/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/osd.h -------------------------------------------------------------------------------- /sdl/readme-sdl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/readme-sdl.txt -------------------------------------------------------------------------------- /sdl/sdl1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/sdl1/main.c -------------------------------------------------------------------------------- /sdl/sdl1/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/sdl1/main.h -------------------------------------------------------------------------------- /sdl/sdl2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/sdl2/main.c -------------------------------------------------------------------------------- /sdl/sdl2/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/sdl2/main.h -------------------------------------------------------------------------------- /sdl/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/unzip.c -------------------------------------------------------------------------------- /sdl/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/sdl/unzip.h -------------------------------------------------------------------------------- /wiki/Compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/wiki/Compatibility.md -------------------------------------------------------------------------------- /wiki/Credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/wiki/Credits.md -------------------------------------------------------------------------------- /wiki/Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/wiki/Features.md -------------------------------------------------------------------------------- /wiki/Frequently Asked Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/wiki/Frequently Asked Questions.md -------------------------------------------------------------------------------- /wiki/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/Genesis-Plus-GX-Wide/HEAD/wiki/Getting Started.md --------------------------------------------------------------------------------