├── License ├── README ├── TODO.md ├── snem ├── .preload.js.swp ├── 65816.c ├── buildjs ├── buildww ├── buildxnes ├── drawansi.h ├── dsp.c ├── exec.c ├── extract_script.py ├── io.c ├── main.c ├── native.c ├── ppu.c ├── pre.js ├── snes.h ├── snesEmu.html ├── snesWW.html ├── snesWW2.html ├── spc.c ├── testmain.html └── testworker.js └── snes9x ├── 65c816.h ├── apu ├── SNES_SPC.cpp ├── SNES_SPC.h ├── SNES_SPC_misc.cpp ├── SNES_SPC_state.cpp ├── SPC_CPU.h ├── SPC_DSP.cpp ├── SPC_DSP.h ├── SPC_Filter.cpp ├── SPC_Filter.h ├── apu.cpp ├── apu.h ├── apu.h~ ├── blargg_common.h ├── blargg_config.h ├── blargg_endian.h ├── blargg_source.h ├── hermite_resampler.h ├── license.txt ├── linear_resampler.h ├── resampler.h └── ring_buffer.h ├── bsx.cpp ├── bsx.h ├── c4.cpp ├── c4.h ├── c4emu.cpp ├── cheats.cpp ├── cheats.h ├── cheats2.cpp ├── clip.cpp ├── conffile.cpp ├── conffile.h ├── controls.cpp ├── controls.h ├── cpu.cpp ├── cpuaddr.h ├── cpuexec.cpp ├── cpuexec.h ├── cpumacro.h ├── cpuops.cpp ├── cpuops.h ├── crosshairs.cpp ├── crosshairs.h ├── debug.cpp ├── debug.h ├── display.h ├── dma.cpp ├── dma.h ├── docs ├── changes.txt ├── control-inputs.txt ├── controls.txt ├── gpl-2.0.txt ├── lgpl-2.1.txt ├── porting.html ├── portsofsnes9x.txt ├── snapshots.txt ├── snes9x-license.txt └── snes9x.conf.default ├── dsp.cpp ├── dsp.h ├── dsp1.cpp ├── dsp2.cpp ├── dsp3.cpp ├── dsp4.cpp ├── filter ├── 2xsai.cpp ├── 2xsai.h ├── blit.cpp ├── blit.h ├── epx.cpp ├── epx.h ├── hq2x.cpp ├── hq2x.h ├── snes_ntsc-license.txt ├── snes_ntsc.c ├── snes_ntsc.h ├── snes_ntsc_config.h └── snes_ntsc_impl.h ├── font.h ├── fxdbg.cpp ├── fxemu.cpp ├── fxemu.h ├── fxinst.cpp ├── fxinst.h ├── getset.h ├── gfx.cpp ├── gfx.h ├── globals.cpp ├── icons ├── burger1.png ├── burger2.png └── burger3.png ├── jma ├── 7z.h ├── 7zlzma.cpp ├── aribitcd.h ├── ariconst.h ├── ariprice.h ├── btreecd.h ├── crc32.cpp ├── crc32.h ├── iiostrm.cpp ├── iiostrm.h ├── inbyte.cpp ├── inbyte.h ├── jma.cpp ├── jma.h ├── lencoder.h ├── license.txt ├── litcoder.h ├── lzma.cpp ├── lzma.h ├── lzmadec.cpp ├── lzmadec.h ├── portable.h ├── rcdefs.h ├── rngcoder.h ├── s9x-jma.cpp ├── s9x-jma.h ├── winout.cpp └── winout.h ├── language.h ├── loadzip.cpp ├── logger.cpp ├── logger.h ├── memmap.cpp ├── memmap.h ├── messages.h ├── missing.h ├── movie.cpp ├── movie.h ├── netplay.cpp ├── netplay.h ├── obc1.cpp ├── obc1.h ├── pixform.h ├── port.h ├── ppu.cpp ├── ppu.h ├── reader.cpp ├── reader.h ├── sa1.cpp ├── sa1.h ├── sa1cpu.cpp ├── sar.h ├── screenshot.cpp ├── screenshot.h ├── sdd1.cpp ├── sdd1.h ├── sdd1emu.cpp ├── sdd1emu.h ├── sdl ├── CREDITS ├── Makefile ├── Makefile.in ├── buildhtml ├── config.guess ├── config.info ├── config.log ├── config.status ├── config.sub ├── configure ├── configure.ac ├── docs │ ├── control-inputs.txt │ ├── readme_unix.html │ └── snes9x-sdl.conf ├── drawansi.h ├── em.makefile ├── extract_script.py ├── install-sh ├── modern-ui-shell.html ├── sdl_snes9x.h ├── sdlaudio.cpp ├── sdlinput.cpp ├── sdlmain.cpp ├── sdlvideo.cpp ├── snes9x.html └── xnes9x_shell.html ├── server.cpp ├── seta.cpp ├── seta.h ├── seta010.cpp ├── seta011.cpp ├── seta018.cpp ├── snapshot.cpp ├── snapshot.h ├── snes9x.cpp ├── snes9x.h ├── spc7110.cpp ├── spc7110.h ├── spc7110dec.cpp ├── spc7110dec.h ├── spc7110emu.cpp ├── spc7110emu.h ├── srtc.cpp ├── srtc.h ├── srtcemu.cpp ├── srtcemu.h ├── tile.cpp ├── tile.h └── unzip ├── crypt.h ├── ioapi.c ├── ioapi.h ├── iowin32.c ├── iowin32.h ├── miniunz.c ├── minizip.c ├── mztools.c ├── mztools.h ├── unzip.c ├── unzip.h ├── zip.c └── zip.h /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/License -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/README -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/TODO.md -------------------------------------------------------------------------------- /snem/.preload.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/.preload.js.swp -------------------------------------------------------------------------------- /snem/65816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/65816.c -------------------------------------------------------------------------------- /snem/buildjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/buildjs -------------------------------------------------------------------------------- /snem/buildww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/buildww -------------------------------------------------------------------------------- /snem/buildxnes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/buildxnes -------------------------------------------------------------------------------- /snem/drawansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/drawansi.h -------------------------------------------------------------------------------- /snem/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/dsp.c -------------------------------------------------------------------------------- /snem/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/exec.c -------------------------------------------------------------------------------- /snem/extract_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/extract_script.py -------------------------------------------------------------------------------- /snem/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/io.c -------------------------------------------------------------------------------- /snem/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/main.c -------------------------------------------------------------------------------- /snem/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/native.c -------------------------------------------------------------------------------- /snem/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/ppu.c -------------------------------------------------------------------------------- /snem/pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/pre.js -------------------------------------------------------------------------------- /snem/snes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/snes.h -------------------------------------------------------------------------------- /snem/snesEmu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/snesEmu.html -------------------------------------------------------------------------------- /snem/snesWW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/snesWW.html -------------------------------------------------------------------------------- /snem/snesWW2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/snesWW2.html -------------------------------------------------------------------------------- /snem/spc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/spc.c -------------------------------------------------------------------------------- /snem/testmain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/testmain.html -------------------------------------------------------------------------------- /snem/testworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snem/testworker.js -------------------------------------------------------------------------------- /snes9x/65c816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/65c816.h -------------------------------------------------------------------------------- /snes9x/apu/SNES_SPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SNES_SPC.cpp -------------------------------------------------------------------------------- /snes9x/apu/SNES_SPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SNES_SPC.h -------------------------------------------------------------------------------- /snes9x/apu/SNES_SPC_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SNES_SPC_misc.cpp -------------------------------------------------------------------------------- /snes9x/apu/SNES_SPC_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SNES_SPC_state.cpp -------------------------------------------------------------------------------- /snes9x/apu/SPC_CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SPC_CPU.h -------------------------------------------------------------------------------- /snes9x/apu/SPC_DSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SPC_DSP.cpp -------------------------------------------------------------------------------- /snes9x/apu/SPC_DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SPC_DSP.h -------------------------------------------------------------------------------- /snes9x/apu/SPC_Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SPC_Filter.cpp -------------------------------------------------------------------------------- /snes9x/apu/SPC_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/SPC_Filter.h -------------------------------------------------------------------------------- /snes9x/apu/apu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/apu.cpp -------------------------------------------------------------------------------- /snes9x/apu/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/apu.h -------------------------------------------------------------------------------- /snes9x/apu/apu.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/apu.h~ -------------------------------------------------------------------------------- /snes9x/apu/blargg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/blargg_common.h -------------------------------------------------------------------------------- /snes9x/apu/blargg_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/blargg_config.h -------------------------------------------------------------------------------- /snes9x/apu/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/blargg_endian.h -------------------------------------------------------------------------------- /snes9x/apu/blargg_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/blargg_source.h -------------------------------------------------------------------------------- /snes9x/apu/hermite_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/hermite_resampler.h -------------------------------------------------------------------------------- /snes9x/apu/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/license.txt -------------------------------------------------------------------------------- /snes9x/apu/linear_resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/linear_resampler.h -------------------------------------------------------------------------------- /snes9x/apu/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/resampler.h -------------------------------------------------------------------------------- /snes9x/apu/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/apu/ring_buffer.h -------------------------------------------------------------------------------- /snes9x/bsx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/bsx.cpp -------------------------------------------------------------------------------- /snes9x/bsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/bsx.h -------------------------------------------------------------------------------- /snes9x/c4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/c4.cpp -------------------------------------------------------------------------------- /snes9x/c4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/c4.h -------------------------------------------------------------------------------- /snes9x/c4emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/c4emu.cpp -------------------------------------------------------------------------------- /snes9x/cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cheats.cpp -------------------------------------------------------------------------------- /snes9x/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cheats.h -------------------------------------------------------------------------------- /snes9x/cheats2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cheats2.cpp -------------------------------------------------------------------------------- /snes9x/clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/clip.cpp -------------------------------------------------------------------------------- /snes9x/conffile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/conffile.cpp -------------------------------------------------------------------------------- /snes9x/conffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/conffile.h -------------------------------------------------------------------------------- /snes9x/controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/controls.cpp -------------------------------------------------------------------------------- /snes9x/controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/controls.h -------------------------------------------------------------------------------- /snes9x/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpu.cpp -------------------------------------------------------------------------------- /snes9x/cpuaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpuaddr.h -------------------------------------------------------------------------------- /snes9x/cpuexec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpuexec.cpp -------------------------------------------------------------------------------- /snes9x/cpuexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpuexec.h -------------------------------------------------------------------------------- /snes9x/cpumacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpumacro.h -------------------------------------------------------------------------------- /snes9x/cpuops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpuops.cpp -------------------------------------------------------------------------------- /snes9x/cpuops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/cpuops.h -------------------------------------------------------------------------------- /snes9x/crosshairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/crosshairs.cpp -------------------------------------------------------------------------------- /snes9x/crosshairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/crosshairs.h -------------------------------------------------------------------------------- /snes9x/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/debug.cpp -------------------------------------------------------------------------------- /snes9x/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/debug.h -------------------------------------------------------------------------------- /snes9x/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/display.h -------------------------------------------------------------------------------- /snes9x/dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dma.cpp -------------------------------------------------------------------------------- /snes9x/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dma.h -------------------------------------------------------------------------------- /snes9x/docs/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/changes.txt -------------------------------------------------------------------------------- /snes9x/docs/control-inputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/control-inputs.txt -------------------------------------------------------------------------------- /snes9x/docs/controls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/controls.txt -------------------------------------------------------------------------------- /snes9x/docs/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/gpl-2.0.txt -------------------------------------------------------------------------------- /snes9x/docs/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/lgpl-2.1.txt -------------------------------------------------------------------------------- /snes9x/docs/porting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/porting.html -------------------------------------------------------------------------------- /snes9x/docs/portsofsnes9x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/portsofsnes9x.txt -------------------------------------------------------------------------------- /snes9x/docs/snapshots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/snapshots.txt -------------------------------------------------------------------------------- /snes9x/docs/snes9x-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/snes9x-license.txt -------------------------------------------------------------------------------- /snes9x/docs/snes9x.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/docs/snes9x.conf.default -------------------------------------------------------------------------------- /snes9x/dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dsp.cpp -------------------------------------------------------------------------------- /snes9x/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dsp.h -------------------------------------------------------------------------------- /snes9x/dsp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dsp1.cpp -------------------------------------------------------------------------------- /snes9x/dsp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dsp2.cpp -------------------------------------------------------------------------------- /snes9x/dsp3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dsp3.cpp -------------------------------------------------------------------------------- /snes9x/dsp4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/dsp4.cpp -------------------------------------------------------------------------------- /snes9x/filter/2xsai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/2xsai.cpp -------------------------------------------------------------------------------- /snes9x/filter/2xsai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/2xsai.h -------------------------------------------------------------------------------- /snes9x/filter/blit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/blit.cpp -------------------------------------------------------------------------------- /snes9x/filter/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/blit.h -------------------------------------------------------------------------------- /snes9x/filter/epx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/epx.cpp -------------------------------------------------------------------------------- /snes9x/filter/epx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/epx.h -------------------------------------------------------------------------------- /snes9x/filter/hq2x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/hq2x.cpp -------------------------------------------------------------------------------- /snes9x/filter/hq2x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/hq2x.h -------------------------------------------------------------------------------- /snes9x/filter/snes_ntsc-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/snes_ntsc-license.txt -------------------------------------------------------------------------------- /snes9x/filter/snes_ntsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/snes_ntsc.c -------------------------------------------------------------------------------- /snes9x/filter/snes_ntsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/snes_ntsc.h -------------------------------------------------------------------------------- /snes9x/filter/snes_ntsc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/snes_ntsc_config.h -------------------------------------------------------------------------------- /snes9x/filter/snes_ntsc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/filter/snes_ntsc_impl.h -------------------------------------------------------------------------------- /snes9x/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/font.h -------------------------------------------------------------------------------- /snes9x/fxdbg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/fxdbg.cpp -------------------------------------------------------------------------------- /snes9x/fxemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/fxemu.cpp -------------------------------------------------------------------------------- /snes9x/fxemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/fxemu.h -------------------------------------------------------------------------------- /snes9x/fxinst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/fxinst.cpp -------------------------------------------------------------------------------- /snes9x/fxinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/fxinst.h -------------------------------------------------------------------------------- /snes9x/getset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/getset.h -------------------------------------------------------------------------------- /snes9x/gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/gfx.cpp -------------------------------------------------------------------------------- /snes9x/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/gfx.h -------------------------------------------------------------------------------- /snes9x/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/globals.cpp -------------------------------------------------------------------------------- /snes9x/icons/burger1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/icons/burger1.png -------------------------------------------------------------------------------- /snes9x/icons/burger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/icons/burger2.png -------------------------------------------------------------------------------- /snes9x/icons/burger3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/icons/burger3.png -------------------------------------------------------------------------------- /snes9x/jma/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/7z.h -------------------------------------------------------------------------------- /snes9x/jma/7zlzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/7zlzma.cpp -------------------------------------------------------------------------------- /snes9x/jma/aribitcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/aribitcd.h -------------------------------------------------------------------------------- /snes9x/jma/ariconst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/ariconst.h -------------------------------------------------------------------------------- /snes9x/jma/ariprice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/ariprice.h -------------------------------------------------------------------------------- /snes9x/jma/btreecd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/btreecd.h -------------------------------------------------------------------------------- /snes9x/jma/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/crc32.cpp -------------------------------------------------------------------------------- /snes9x/jma/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/crc32.h -------------------------------------------------------------------------------- /snes9x/jma/iiostrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/iiostrm.cpp -------------------------------------------------------------------------------- /snes9x/jma/iiostrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/iiostrm.h -------------------------------------------------------------------------------- /snes9x/jma/inbyte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/inbyte.cpp -------------------------------------------------------------------------------- /snes9x/jma/inbyte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/inbyte.h -------------------------------------------------------------------------------- /snes9x/jma/jma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/jma.cpp -------------------------------------------------------------------------------- /snes9x/jma/jma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/jma.h -------------------------------------------------------------------------------- /snes9x/jma/lencoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/lencoder.h -------------------------------------------------------------------------------- /snes9x/jma/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/license.txt -------------------------------------------------------------------------------- /snes9x/jma/litcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/litcoder.h -------------------------------------------------------------------------------- /snes9x/jma/lzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/lzma.cpp -------------------------------------------------------------------------------- /snes9x/jma/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/lzma.h -------------------------------------------------------------------------------- /snes9x/jma/lzmadec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/lzmadec.cpp -------------------------------------------------------------------------------- /snes9x/jma/lzmadec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/lzmadec.h -------------------------------------------------------------------------------- /snes9x/jma/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/portable.h -------------------------------------------------------------------------------- /snes9x/jma/rcdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/rcdefs.h -------------------------------------------------------------------------------- /snes9x/jma/rngcoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/rngcoder.h -------------------------------------------------------------------------------- /snes9x/jma/s9x-jma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/s9x-jma.cpp -------------------------------------------------------------------------------- /snes9x/jma/s9x-jma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/s9x-jma.h -------------------------------------------------------------------------------- /snes9x/jma/winout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/winout.cpp -------------------------------------------------------------------------------- /snes9x/jma/winout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/jma/winout.h -------------------------------------------------------------------------------- /snes9x/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/language.h -------------------------------------------------------------------------------- /snes9x/loadzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/loadzip.cpp -------------------------------------------------------------------------------- /snes9x/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/logger.cpp -------------------------------------------------------------------------------- /snes9x/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/logger.h -------------------------------------------------------------------------------- /snes9x/memmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/memmap.cpp -------------------------------------------------------------------------------- /snes9x/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/memmap.h -------------------------------------------------------------------------------- /snes9x/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/messages.h -------------------------------------------------------------------------------- /snes9x/missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/missing.h -------------------------------------------------------------------------------- /snes9x/movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/movie.cpp -------------------------------------------------------------------------------- /snes9x/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/movie.h -------------------------------------------------------------------------------- /snes9x/netplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/netplay.cpp -------------------------------------------------------------------------------- /snes9x/netplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/netplay.h -------------------------------------------------------------------------------- /snes9x/obc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/obc1.cpp -------------------------------------------------------------------------------- /snes9x/obc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/obc1.h -------------------------------------------------------------------------------- /snes9x/pixform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/pixform.h -------------------------------------------------------------------------------- /snes9x/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/port.h -------------------------------------------------------------------------------- /snes9x/ppu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/ppu.cpp -------------------------------------------------------------------------------- /snes9x/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/ppu.h -------------------------------------------------------------------------------- /snes9x/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/reader.cpp -------------------------------------------------------------------------------- /snes9x/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/reader.h -------------------------------------------------------------------------------- /snes9x/sa1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sa1.cpp -------------------------------------------------------------------------------- /snes9x/sa1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sa1.h -------------------------------------------------------------------------------- /snes9x/sa1cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sa1cpu.cpp -------------------------------------------------------------------------------- /snes9x/sar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sar.h -------------------------------------------------------------------------------- /snes9x/screenshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/screenshot.cpp -------------------------------------------------------------------------------- /snes9x/screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/screenshot.h -------------------------------------------------------------------------------- /snes9x/sdd1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdd1.cpp -------------------------------------------------------------------------------- /snes9x/sdd1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdd1.h -------------------------------------------------------------------------------- /snes9x/sdd1emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdd1emu.cpp -------------------------------------------------------------------------------- /snes9x/sdd1emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdd1emu.h -------------------------------------------------------------------------------- /snes9x/sdl/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/CREDITS -------------------------------------------------------------------------------- /snes9x/sdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/Makefile -------------------------------------------------------------------------------- /snes9x/sdl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/Makefile.in -------------------------------------------------------------------------------- /snes9x/sdl/buildhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/buildhtml -------------------------------------------------------------------------------- /snes9x/sdl/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/config.guess -------------------------------------------------------------------------------- /snes9x/sdl/config.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/config.info -------------------------------------------------------------------------------- /snes9x/sdl/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/config.log -------------------------------------------------------------------------------- /snes9x/sdl/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/config.status -------------------------------------------------------------------------------- /snes9x/sdl/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/config.sub -------------------------------------------------------------------------------- /snes9x/sdl/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/configure -------------------------------------------------------------------------------- /snes9x/sdl/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/configure.ac -------------------------------------------------------------------------------- /snes9x/sdl/docs/control-inputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/docs/control-inputs.txt -------------------------------------------------------------------------------- /snes9x/sdl/docs/readme_unix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/docs/readme_unix.html -------------------------------------------------------------------------------- /snes9x/sdl/docs/snes9x-sdl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/docs/snes9x-sdl.conf -------------------------------------------------------------------------------- /snes9x/sdl/drawansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/drawansi.h -------------------------------------------------------------------------------- /snes9x/sdl/em.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/em.makefile -------------------------------------------------------------------------------- /snes9x/sdl/extract_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/extract_script.py -------------------------------------------------------------------------------- /snes9x/sdl/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/install-sh -------------------------------------------------------------------------------- /snes9x/sdl/modern-ui-shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/modern-ui-shell.html -------------------------------------------------------------------------------- /snes9x/sdl/sdl_snes9x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/sdl_snes9x.h -------------------------------------------------------------------------------- /snes9x/sdl/sdlaudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/sdlaudio.cpp -------------------------------------------------------------------------------- /snes9x/sdl/sdlinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/sdlinput.cpp -------------------------------------------------------------------------------- /snes9x/sdl/sdlmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/sdlmain.cpp -------------------------------------------------------------------------------- /snes9x/sdl/sdlvideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/sdlvideo.cpp -------------------------------------------------------------------------------- /snes9x/sdl/snes9x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/snes9x.html -------------------------------------------------------------------------------- /snes9x/sdl/xnes9x_shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/sdl/xnes9x_shell.html -------------------------------------------------------------------------------- /snes9x/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/server.cpp -------------------------------------------------------------------------------- /snes9x/seta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/seta.cpp -------------------------------------------------------------------------------- /snes9x/seta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/seta.h -------------------------------------------------------------------------------- /snes9x/seta010.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/seta010.cpp -------------------------------------------------------------------------------- /snes9x/seta011.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/seta011.cpp -------------------------------------------------------------------------------- /snes9x/seta018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/seta018.cpp -------------------------------------------------------------------------------- /snes9x/snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/snapshot.cpp -------------------------------------------------------------------------------- /snes9x/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/snapshot.h -------------------------------------------------------------------------------- /snes9x/snes9x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/snes9x.cpp -------------------------------------------------------------------------------- /snes9x/snes9x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/snes9x.h -------------------------------------------------------------------------------- /snes9x/spc7110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/spc7110.cpp -------------------------------------------------------------------------------- /snes9x/spc7110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/spc7110.h -------------------------------------------------------------------------------- /snes9x/spc7110dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/spc7110dec.cpp -------------------------------------------------------------------------------- /snes9x/spc7110dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/spc7110dec.h -------------------------------------------------------------------------------- /snes9x/spc7110emu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/spc7110emu.cpp -------------------------------------------------------------------------------- /snes9x/spc7110emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/spc7110emu.h -------------------------------------------------------------------------------- /snes9x/srtc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/srtc.cpp -------------------------------------------------------------------------------- /snes9x/srtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/srtc.h -------------------------------------------------------------------------------- /snes9x/srtcemu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/srtcemu.cpp -------------------------------------------------------------------------------- /snes9x/srtcemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/srtcemu.h -------------------------------------------------------------------------------- /snes9x/tile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/tile.cpp -------------------------------------------------------------------------------- /snes9x/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/tile.h -------------------------------------------------------------------------------- /snes9x/unzip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/crypt.h -------------------------------------------------------------------------------- /snes9x/unzip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/ioapi.c -------------------------------------------------------------------------------- /snes9x/unzip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/ioapi.h -------------------------------------------------------------------------------- /snes9x/unzip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/iowin32.c -------------------------------------------------------------------------------- /snes9x/unzip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/iowin32.h -------------------------------------------------------------------------------- /snes9x/unzip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/miniunz.c -------------------------------------------------------------------------------- /snes9x/unzip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/minizip.c -------------------------------------------------------------------------------- /snes9x/unzip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/mztools.c -------------------------------------------------------------------------------- /snes9x/unzip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/mztools.h -------------------------------------------------------------------------------- /snes9x/unzip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/unzip.c -------------------------------------------------------------------------------- /snes9x/unzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/unzip.h -------------------------------------------------------------------------------- /snes9x/unzip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/zip.c -------------------------------------------------------------------------------- /snes9x/unzip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjwei/xnes/HEAD/snes9x/unzip/zip.h --------------------------------------------------------------------------------