├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── COPYING ├── Makefile ├── Makefile.common ├── README ├── README.md ├── jni ├── Android.mk └── Application.mk ├── libretro.cpp ├── libretro.h ├── link.T └── mednafen ├── ExtMemStream.cpp ├── ExtMemStream.h ├── FileStream.cpp ├── FileStream.h ├── MTStreamReader.cpp ├── MTStreamReader.h ├── MThreading.h ├── MemoryStream.cpp ├── MemoryStream.h ├── NativeVFS.cpp ├── NativeVFS.h ├── Stream.cpp ├── Stream.h ├── VirtualFS.cpp ├── VirtualFS.h ├── cheat_formats ├── snes.cpp └── snes.h ├── config.h ├── cputest └── cputest.h ├── endian.cpp ├── error.cpp ├── error.h ├── git.cpp ├── git.h ├── hash ├── sha1.cpp ├── sha1.h ├── sha256.cpp └── sha256.h ├── math_ops.h ├── mednafen-endian.h ├── mednafen.cpp ├── mednafen.h ├── memory.h ├── mempatcher.cpp ├── mempatcher.h ├── mthreading ├── MThreading_POSIX.cpp └── MThreading_Win32.cpp ├── settings-common.h ├── settings.cpp ├── settings.h ├── snes_faust ├── Core65816.h ├── Core65816.inc ├── Makefile.am.inc ├── apu.cpp ├── apu.h ├── cart-private.h ├── cart.cpp ├── cart.h ├── cart │ ├── common.h │ ├── cx4.cpp │ ├── cx4.h │ ├── dsp1-datarom-synth.h │ ├── dsp1.cpp │ ├── dsp1.h │ ├── dsp1chip.h │ ├── dsp2.cpp │ ├── dsp2.h │ ├── dsp2chip.h │ ├── sa1.cpp │ ├── sa1.h │ ├── sa1cpu.cpp │ ├── sa1cpu.h │ ├── sdd1.cpp │ ├── sdd1.h │ ├── superfx.cpp │ └── superfx.h ├── cpu.cpp ├── cpu.h ├── cpu_hlif.inc ├── cpu_loop_body.inc ├── debug.cpp ├── debug.h ├── dis65816.cpp ├── dis65816.h ├── dma.inc ├── dsp.inc ├── input.cpp ├── input.h ├── msu1.cpp ├── msu1.h ├── notes │ ├── GAME_NOTES │ ├── PPU_DESIGN │ ├── genops.cpp │ ├── ops.h │ ├── ops.txt │ ├── ops2.txt │ └── ops3.txt ├── ppu.cpp ├── ppu.h ├── ppu_common.h ├── ppu_common.inc ├── ppu_mt.cpp ├── ppu_mtrender.cpp ├── ppu_mtrender.h ├── ppu_render_common.inc ├── ppu_st.cpp ├── snes.cpp ├── snes.h └── spc700.inc ├── sound ├── DSPUtility.cpp ├── DSPUtility.h ├── OwlResampler.cpp ├── OwlResampler.h ├── OwlResampler_altivec.inc ├── OwlResampler_neon.inc ├── OwlResampler_sse.inc └── OwlResampler_x86.inc ├── state-common.h ├── state.cpp ├── state.h ├── string ├── string.cpp └── string.h ├── types.h ├── video.h └── video ├── Deinterlacer.cpp ├── Deinterlacer.h ├── Deinterlacer_Blend.cpp ├── Deinterlacer_Blend.h ├── Deinterlacer_Simple.cpp ├── Deinterlacer_Simple.h ├── convert.cpp ├── convert.h ├── surface.cpp ├── surface.h └── video-common.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/Makefile.common -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/README.md -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /libretro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/libretro.cpp -------------------------------------------------------------------------------- /libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/libretro.h -------------------------------------------------------------------------------- /link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/link.T -------------------------------------------------------------------------------- /mednafen/ExtMemStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/ExtMemStream.cpp -------------------------------------------------------------------------------- /mednafen/ExtMemStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/ExtMemStream.h -------------------------------------------------------------------------------- /mednafen/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/FileStream.cpp -------------------------------------------------------------------------------- /mednafen/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/FileStream.h -------------------------------------------------------------------------------- /mednafen/MTStreamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/MTStreamReader.cpp -------------------------------------------------------------------------------- /mednafen/MTStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/MTStreamReader.h -------------------------------------------------------------------------------- /mednafen/MThreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/MThreading.h -------------------------------------------------------------------------------- /mednafen/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/MemoryStream.cpp -------------------------------------------------------------------------------- /mednafen/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/MemoryStream.h -------------------------------------------------------------------------------- /mednafen/NativeVFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/NativeVFS.cpp -------------------------------------------------------------------------------- /mednafen/NativeVFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/NativeVFS.h -------------------------------------------------------------------------------- /mednafen/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/Stream.cpp -------------------------------------------------------------------------------- /mednafen/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/Stream.h -------------------------------------------------------------------------------- /mednafen/VirtualFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/VirtualFS.cpp -------------------------------------------------------------------------------- /mednafen/VirtualFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/VirtualFS.h -------------------------------------------------------------------------------- /mednafen/cheat_formats/snes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/cheat_formats/snes.cpp -------------------------------------------------------------------------------- /mednafen/cheat_formats/snes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/cheat_formats/snes.h -------------------------------------------------------------------------------- /mednafen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/config.h -------------------------------------------------------------------------------- /mednafen/cputest/cputest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/cputest/cputest.h -------------------------------------------------------------------------------- /mednafen/endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/endian.cpp -------------------------------------------------------------------------------- /mednafen/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/error.cpp -------------------------------------------------------------------------------- /mednafen/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/error.h -------------------------------------------------------------------------------- /mednafen/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/git.cpp -------------------------------------------------------------------------------- /mednafen/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/git.h -------------------------------------------------------------------------------- /mednafen/hash/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/hash/sha1.cpp -------------------------------------------------------------------------------- /mednafen/hash/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/hash/sha1.h -------------------------------------------------------------------------------- /mednafen/hash/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/hash/sha256.cpp -------------------------------------------------------------------------------- /mednafen/hash/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/hash/sha256.h -------------------------------------------------------------------------------- /mednafen/math_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/math_ops.h -------------------------------------------------------------------------------- /mednafen/mednafen-endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mednafen-endian.h -------------------------------------------------------------------------------- /mednafen/mednafen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mednafen.cpp -------------------------------------------------------------------------------- /mednafen/mednafen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mednafen.h -------------------------------------------------------------------------------- /mednafen/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/memory.h -------------------------------------------------------------------------------- /mednafen/mempatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mempatcher.cpp -------------------------------------------------------------------------------- /mednafen/mempatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mempatcher.h -------------------------------------------------------------------------------- /mednafen/mthreading/MThreading_POSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mthreading/MThreading_POSIX.cpp -------------------------------------------------------------------------------- /mednafen/mthreading/MThreading_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/mthreading/MThreading_Win32.cpp -------------------------------------------------------------------------------- /mednafen/settings-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/settings-common.h -------------------------------------------------------------------------------- /mednafen/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/settings.cpp -------------------------------------------------------------------------------- /mednafen/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/settings.h -------------------------------------------------------------------------------- /mednafen/snes_faust/Core65816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/Core65816.h -------------------------------------------------------------------------------- /mednafen/snes_faust/Core65816.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/Core65816.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/Makefile.am.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/apu.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/apu.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart-private.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/common.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/cx4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/cx4.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/cx4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/cx4.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp1-datarom-synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp1-datarom-synth.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp1.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp1.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp1chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp1chip.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp2.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp2.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/dsp2chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/dsp2chip.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/sa1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/sa1.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/sa1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/sa1.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/sa1cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/sa1cpu.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/sa1cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/sa1cpu.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/sdd1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/sdd1.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/sdd1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/sdd1.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/superfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/superfx.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cart/superfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cart/superfx.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cpu.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cpu.h -------------------------------------------------------------------------------- /mednafen/snes_faust/cpu_hlif.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cpu_hlif.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/cpu_loop_body.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/cpu_loop_body.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/debug.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/debug.h -------------------------------------------------------------------------------- /mednafen/snes_faust/dis65816.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/dis65816.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/dis65816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/dis65816.h -------------------------------------------------------------------------------- /mednafen/snes_faust/dma.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/dma.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/dsp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/dsp.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/input.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/input.h -------------------------------------------------------------------------------- /mednafen/snes_faust/msu1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/msu1.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/msu1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/msu1.h -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/GAME_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/GAME_NOTES -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/PPU_DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/PPU_DESIGN -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/genops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/genops.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/ops.h -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/ops.txt -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/ops2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/ops2.txt -------------------------------------------------------------------------------- /mednafen/snes_faust/notes/ops3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/notes/ops3.txt -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu.h -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_common.h -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_common.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_mt.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_mtrender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_mtrender.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_mtrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_mtrender.h -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_render_common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_render_common.inc -------------------------------------------------------------------------------- /mednafen/snes_faust/ppu_st.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/ppu_st.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/snes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/snes.cpp -------------------------------------------------------------------------------- /mednafen/snes_faust/snes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/snes.h -------------------------------------------------------------------------------- /mednafen/snes_faust/spc700.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/snes_faust/spc700.inc -------------------------------------------------------------------------------- /mednafen/sound/DSPUtility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/DSPUtility.cpp -------------------------------------------------------------------------------- /mednafen/sound/DSPUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/DSPUtility.h -------------------------------------------------------------------------------- /mednafen/sound/OwlResampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/OwlResampler.cpp -------------------------------------------------------------------------------- /mednafen/sound/OwlResampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/OwlResampler.h -------------------------------------------------------------------------------- /mednafen/sound/OwlResampler_altivec.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/OwlResampler_altivec.inc -------------------------------------------------------------------------------- /mednafen/sound/OwlResampler_neon.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/OwlResampler_neon.inc -------------------------------------------------------------------------------- /mednafen/sound/OwlResampler_sse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/OwlResampler_sse.inc -------------------------------------------------------------------------------- /mednafen/sound/OwlResampler_x86.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/sound/OwlResampler_x86.inc -------------------------------------------------------------------------------- /mednafen/state-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/state-common.h -------------------------------------------------------------------------------- /mednafen/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/state.cpp -------------------------------------------------------------------------------- /mednafen/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/state.h -------------------------------------------------------------------------------- /mednafen/string/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/string/string.cpp -------------------------------------------------------------------------------- /mednafen/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/string/string.h -------------------------------------------------------------------------------- /mednafen/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/types.h -------------------------------------------------------------------------------- /mednafen/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video.h -------------------------------------------------------------------------------- /mednafen/video/Deinterlacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/Deinterlacer.cpp -------------------------------------------------------------------------------- /mednafen/video/Deinterlacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/Deinterlacer.h -------------------------------------------------------------------------------- /mednafen/video/Deinterlacer_Blend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/Deinterlacer_Blend.cpp -------------------------------------------------------------------------------- /mednafen/video/Deinterlacer_Blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/Deinterlacer_Blend.h -------------------------------------------------------------------------------- /mednafen/video/Deinterlacer_Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/Deinterlacer_Simple.cpp -------------------------------------------------------------------------------- /mednafen/video/Deinterlacer_Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/Deinterlacer_Simple.h -------------------------------------------------------------------------------- /mednafen/video/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/convert.cpp -------------------------------------------------------------------------------- /mednafen/video/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/convert.h -------------------------------------------------------------------------------- /mednafen/video/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/surface.cpp -------------------------------------------------------------------------------- /mednafen/video/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/surface.h -------------------------------------------------------------------------------- /mednafen/video/video-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libretro/supafaust/HEAD/mednafen/video/video-common.h --------------------------------------------------------------------------------