├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── LICENSES ├── Makefile ├── Makefile.common ├── README.md ├── control ├── jni ├── Android.mk └── Application.mk ├── libretro-common ├── build │ ├── Makefile.android_arm64-v8a │ ├── Makefile.android_armeabi │ ├── Makefile.android_armeabi-v7a │ ├── Makefile.android_mips │ ├── Makefile.android_mips64 │ ├── Makefile.android_x86 │ ├── Makefile.android_x86_64 │ ├── Makefile.linux-portable_x86 │ ├── Makefile.linux-portable_x86_64 │ ├── Makefile.linux_x86 │ ├── Makefile.linux_x86_64 │ ├── Makefile.mingw_x86 │ ├── Makefile.mingw_x86_64 │ ├── Makefile.osx_x86 │ ├── Makefile.osx_x86_64 │ ├── Makefile.rules │ ├── Makefile.vita_arm │ ├── Makefile.wii_ppc │ ├── Makefile.windows_msvc2003_x86 │ ├── Makefile.windows_msvc2005_x86 │ ├── Makefile.windows_msvc2008_x86 │ ├── Makefile.windows_msvc2010_x64 │ ├── Makefile.windows_msvc2010_x86 │ ├── Makefile.windows_msvc2015_x64 │ ├── Makefile.windows_x86 │ └── Makefile.windows_x86_64 ├── 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 │ └── file_path_io.c ├── include │ ├── boolean.h │ ├── compat │ │ ├── fopen_utf8.h │ │ ├── msvc.h │ │ ├── msvc │ │ │ └── stdint.h │ │ ├── posix_string.h │ │ ├── strcasestr.h │ │ └── strl.h │ ├── encodings │ │ └── utf.h │ ├── file │ │ └── file_path.h │ ├── libretro.h │ ├── retro_assert.h │ ├── retro_common.h │ ├── retro_common_api.h │ ├── retro_environment.h │ ├── retro_inline.h │ ├── retro_miscellaneous.h │ ├── streams │ │ ├── file_stream.h │ │ └── memory_stream.h │ ├── string │ │ └── stdstring.h │ ├── time │ │ └── rtime.h │ └── vfs │ │ ├── vfs.h │ │ └── vfs_implementation.h ├── link.T ├── streams │ ├── file_stream.c │ ├── file_stream_transforms.c │ └── memory_stream.c ├── string │ └── stdstring.c ├── time │ └── rtime.c └── vfs │ └── vfs_implementation.c ├── libretro.c ├── libretro_core_options.h ├── libretro_core_options_intl.h └── source ├── 65c816.h ├── apu.c ├── apu.h ├── bsx.c ├── bsx.h ├── cheats.c ├── cheats.h ├── chisnes.h ├── clip.c ├── cpu.c ├── cpuaddr.h ├── cpuexec.c ├── cpuexec.h ├── cpumacro.h ├── cpuops.c ├── cpuops.h ├── cx4.c ├── cx4.h ├── display.h ├── dma.c ├── dma.h ├── dsp.c ├── dsp.h ├── dsp1.c ├── dsp2.c ├── dsp3.c ├── dsp4.c ├── fxemu.c ├── fxemu.h ├── fxinst.c ├── fxinst.h ├── getset.c ├── gfx.c ├── gfx.h ├── globals.c ├── math.c ├── math.h ├── memmap.c ├── memmap.h ├── obc1.c ├── obc1.h ├── pixform.h ├── port.h ├── ppu.c ├── ppu.h ├── sa1.c ├── sa1.h ├── sa1cpu.c ├── sdd1.c ├── sdd1.h ├── seta.h ├── seta010.c ├── snesapu.c ├── snesapu.h ├── soundux.c ├── soundux.h ├── spc700.c ├── spc700.h ├── spc7110.c ├── spc7110.h ├── spc7110dec.c ├── spc7110dec.h ├── srtc.c ├── srtc.h ├── tile.c ├── tile.h ├── xband.c └── xband.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/LICENSES -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/Makefile.common -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/control -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_arm64-v8a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_arm64-v8a -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_armeabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_armeabi -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_armeabi-v7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_armeabi-v7a -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_mips -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_mips64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.android_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.android_x86_64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.linux-portable_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.linux-portable_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.linux-portable_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.linux-portable_x86_64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.linux_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.linux_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.linux_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.linux_x86_64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.mingw_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.mingw_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.mingw_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.mingw_x86_64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.osx_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.osx_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.osx_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.osx_x86_64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.rules -------------------------------------------------------------------------------- /libretro-common/build/Makefile.vita_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.vita_arm -------------------------------------------------------------------------------- /libretro-common/build/Makefile.wii_ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.wii_ppc -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_msvc2003_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_msvc2003_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_msvc2005_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_msvc2005_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_msvc2008_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_msvc2008_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_msvc2010_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_msvc2010_x64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_msvc2010_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_msvc2010_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_msvc2015_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_msvc2015_x64 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_x86 -------------------------------------------------------------------------------- /libretro-common/build/Makefile.windows_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/build/Makefile.windows_x86_64 -------------------------------------------------------------------------------- /libretro-common/compat/compat_posix_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/compat/compat_posix_string.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/compat/compat_snprintf.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/compat/compat_strcasestr.c -------------------------------------------------------------------------------- /libretro-common/compat/compat_strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/compat/compat_strl.c -------------------------------------------------------------------------------- /libretro-common/compat/fopen_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/compat/fopen_utf8.c -------------------------------------------------------------------------------- /libretro-common/encodings/encoding_utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/encodings/encoding_utf.c -------------------------------------------------------------------------------- /libretro-common/file/file_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/file/file_path.c -------------------------------------------------------------------------------- /libretro-common/file/file_path_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/file/file_path_io.c -------------------------------------------------------------------------------- /libretro-common/include/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/boolean.h -------------------------------------------------------------------------------- /libretro-common/include/compat/fopen_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/compat/fopen_utf8.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/compat/msvc.h -------------------------------------------------------------------------------- /libretro-common/include/compat/msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/compat/msvc/stdint.h -------------------------------------------------------------------------------- /libretro-common/include/compat/posix_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/compat/posix_string.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strcasestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/compat/strcasestr.h -------------------------------------------------------------------------------- /libretro-common/include/compat/strl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/compat/strl.h -------------------------------------------------------------------------------- /libretro-common/include/encodings/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/encodings/utf.h -------------------------------------------------------------------------------- /libretro-common/include/file/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/file/file_path.h -------------------------------------------------------------------------------- /libretro-common/include/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/libretro.h -------------------------------------------------------------------------------- /libretro-common/include/retro_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/retro_assert.h -------------------------------------------------------------------------------- /libretro-common/include/retro_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/retro_common.h -------------------------------------------------------------------------------- /libretro-common/include/retro_common_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/retro_common_api.h -------------------------------------------------------------------------------- /libretro-common/include/retro_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/retro_environment.h -------------------------------------------------------------------------------- /libretro-common/include/retro_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/retro_inline.h -------------------------------------------------------------------------------- /libretro-common/include/retro_miscellaneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/retro_miscellaneous.h -------------------------------------------------------------------------------- /libretro-common/include/streams/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/streams/file_stream.h -------------------------------------------------------------------------------- /libretro-common/include/streams/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/streams/memory_stream.h -------------------------------------------------------------------------------- /libretro-common/include/string/stdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/string/stdstring.h -------------------------------------------------------------------------------- /libretro-common/include/time/rtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/time/rtime.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/vfs/vfs.h -------------------------------------------------------------------------------- /libretro-common/include/vfs/vfs_implementation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/include/vfs/vfs_implementation.h -------------------------------------------------------------------------------- /libretro-common/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/link.T -------------------------------------------------------------------------------- /libretro-common/streams/file_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/streams/file_stream.c -------------------------------------------------------------------------------- /libretro-common/streams/file_stream_transforms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/streams/file_stream_transforms.c -------------------------------------------------------------------------------- /libretro-common/streams/memory_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/streams/memory_stream.c -------------------------------------------------------------------------------- /libretro-common/string/stdstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/string/stdstring.c -------------------------------------------------------------------------------- /libretro-common/time/rtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/time/rtime.c -------------------------------------------------------------------------------- /libretro-common/vfs/vfs_implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro-common/vfs/vfs_implementation.c -------------------------------------------------------------------------------- /libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro.c -------------------------------------------------------------------------------- /libretro_core_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro_core_options.h -------------------------------------------------------------------------------- /libretro_core_options_intl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/libretro_core_options_intl.h -------------------------------------------------------------------------------- /source/65c816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/65c816.h -------------------------------------------------------------------------------- /source/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/apu.c -------------------------------------------------------------------------------- /source/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/apu.h -------------------------------------------------------------------------------- /source/bsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/bsx.c -------------------------------------------------------------------------------- /source/bsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/bsx.h -------------------------------------------------------------------------------- /source/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cheats.c -------------------------------------------------------------------------------- /source/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cheats.h -------------------------------------------------------------------------------- /source/chisnes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/chisnes.h -------------------------------------------------------------------------------- /source/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/clip.c -------------------------------------------------------------------------------- /source/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpu.c -------------------------------------------------------------------------------- /source/cpuaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpuaddr.h -------------------------------------------------------------------------------- /source/cpuexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpuexec.c -------------------------------------------------------------------------------- /source/cpuexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpuexec.h -------------------------------------------------------------------------------- /source/cpumacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpumacro.h -------------------------------------------------------------------------------- /source/cpuops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpuops.c -------------------------------------------------------------------------------- /source/cpuops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cpuops.h -------------------------------------------------------------------------------- /source/cx4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cx4.c -------------------------------------------------------------------------------- /source/cx4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/cx4.h -------------------------------------------------------------------------------- /source/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/display.h -------------------------------------------------------------------------------- /source/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dma.c -------------------------------------------------------------------------------- /source/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dma.h -------------------------------------------------------------------------------- /source/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dsp.c -------------------------------------------------------------------------------- /source/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dsp.h -------------------------------------------------------------------------------- /source/dsp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dsp1.c -------------------------------------------------------------------------------- /source/dsp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dsp2.c -------------------------------------------------------------------------------- /source/dsp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dsp3.c -------------------------------------------------------------------------------- /source/dsp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/dsp4.c -------------------------------------------------------------------------------- /source/fxemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/fxemu.c -------------------------------------------------------------------------------- /source/fxemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/fxemu.h -------------------------------------------------------------------------------- /source/fxinst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/fxinst.c -------------------------------------------------------------------------------- /source/fxinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/fxinst.h -------------------------------------------------------------------------------- /source/getset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/getset.c -------------------------------------------------------------------------------- /source/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/gfx.c -------------------------------------------------------------------------------- /source/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/gfx.h -------------------------------------------------------------------------------- /source/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/globals.c -------------------------------------------------------------------------------- /source/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/math.c -------------------------------------------------------------------------------- /source/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/math.h -------------------------------------------------------------------------------- /source/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/memmap.c -------------------------------------------------------------------------------- /source/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/memmap.h -------------------------------------------------------------------------------- /source/obc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/obc1.c -------------------------------------------------------------------------------- /source/obc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/obc1.h -------------------------------------------------------------------------------- /source/pixform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/pixform.h -------------------------------------------------------------------------------- /source/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/port.h -------------------------------------------------------------------------------- /source/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/ppu.c -------------------------------------------------------------------------------- /source/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/ppu.h -------------------------------------------------------------------------------- /source/sa1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/sa1.c -------------------------------------------------------------------------------- /source/sa1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/sa1.h -------------------------------------------------------------------------------- /source/sa1cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/sa1cpu.c -------------------------------------------------------------------------------- /source/sdd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/sdd1.c -------------------------------------------------------------------------------- /source/sdd1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/sdd1.h -------------------------------------------------------------------------------- /source/seta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/seta.h -------------------------------------------------------------------------------- /source/seta010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/seta010.c -------------------------------------------------------------------------------- /source/snesapu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/snesapu.c -------------------------------------------------------------------------------- /source/snesapu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/snesapu.h -------------------------------------------------------------------------------- /source/soundux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/soundux.c -------------------------------------------------------------------------------- /source/soundux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/soundux.h -------------------------------------------------------------------------------- /source/spc700.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/spc700.c -------------------------------------------------------------------------------- /source/spc700.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/spc700.h -------------------------------------------------------------------------------- /source/spc7110.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/spc7110.c -------------------------------------------------------------------------------- /source/spc7110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/spc7110.h -------------------------------------------------------------------------------- /source/spc7110dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/spc7110dec.c -------------------------------------------------------------------------------- /source/spc7110dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/spc7110dec.h -------------------------------------------------------------------------------- /source/srtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/srtc.c -------------------------------------------------------------------------------- /source/srtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/srtc.h -------------------------------------------------------------------------------- /source/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/tile.c -------------------------------------------------------------------------------- /source/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/tile.h -------------------------------------------------------------------------------- /source/xband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/xband.c -------------------------------------------------------------------------------- /source/xband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamsilva/chimerasnes/HEAD/source/xband.h --------------------------------------------------------------------------------