├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── db.json ├── docs └── snes9x-next │ ├── changes.txt │ ├── control-inputs.txt │ ├── controls.txt │ ├── gpl-2.0.txt │ ├── lgpl-2.1.txt │ ├── porting.html │ ├── snapshots.txt │ └── snes9x-license.txt ├── extra.json ├── libretro ├── libretro.c ├── libretro.h ├── memory_stream.c └── memory_stream.h ├── src ├── 65c816.h ├── apu.c ├── apu.h ├── blargg_endian.h ├── bsx.c ├── bsx.h ├── c4.h ├── c4emu.c ├── cheats.c ├── cheats.h ├── controls.c ├── controls.h ├── cpu.c ├── cpuaddr.h ├── cpuexec.c ├── cpuexec.h ├── cpumacro.h ├── cpuops.h ├── cpuops_.h ├── crosshairs.h ├── display.h ├── dma.h ├── dsp.c ├── dsp.h ├── fxemu.c ├── fxemu.h ├── fxinst.h ├── getset.h ├── globals.c ├── memmap.c ├── memmap.h ├── messages.h ├── obc1.c ├── obc1.h ├── pixform.h ├── port.h ├── ppu.c ├── ppu.h ├── sa1.c ├── sa1.h ├── sdd1.c ├── sdd1.h ├── sdd1emu.h ├── seta.c ├── seta.h ├── snapshot.c ├── snapshot.h ├── snes9x.h ├── snes9x_griffin.c ├── spc7110.c ├── spc7110.h ├── spc7110dec.h ├── spc7110emu.h ├── srtc.c ├── srtc.h ├── tile.c └── tile.h └── vita ├── font.c ├── font.h ├── font_data.c ├── main.c ├── main.h ├── utils.c ├── utils.h ├── vita_audio.c ├── vita_audio.h ├── vita_input.c ├── vita_input.h ├── vita_menu.c ├── vita_menu.h ├── vita_video.c └── vita_video.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/README.md -------------------------------------------------------------------------------- /db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/db.json -------------------------------------------------------------------------------- /docs/snes9x-next/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/changes.txt -------------------------------------------------------------------------------- /docs/snes9x-next/control-inputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/control-inputs.txt -------------------------------------------------------------------------------- /docs/snes9x-next/controls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/controls.txt -------------------------------------------------------------------------------- /docs/snes9x-next/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/gpl-2.0.txt -------------------------------------------------------------------------------- /docs/snes9x-next/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/lgpl-2.1.txt -------------------------------------------------------------------------------- /docs/snes9x-next/porting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/porting.html -------------------------------------------------------------------------------- /docs/snes9x-next/snapshots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/snapshots.txt -------------------------------------------------------------------------------- /docs/snes9x-next/snes9x-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/docs/snes9x-next/snes9x-license.txt -------------------------------------------------------------------------------- /extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/extra.json -------------------------------------------------------------------------------- /libretro/libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/libretro/libretro.c -------------------------------------------------------------------------------- /libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/libretro/libretro.h -------------------------------------------------------------------------------- /libretro/memory_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/libretro/memory_stream.c -------------------------------------------------------------------------------- /libretro/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/libretro/memory_stream.h -------------------------------------------------------------------------------- /src/65c816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/65c816.h -------------------------------------------------------------------------------- /src/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/apu.c -------------------------------------------------------------------------------- /src/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/apu.h -------------------------------------------------------------------------------- /src/blargg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/blargg_endian.h -------------------------------------------------------------------------------- /src/bsx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/bsx.c -------------------------------------------------------------------------------- /src/bsx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/bsx.h -------------------------------------------------------------------------------- /src/c4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/c4.h -------------------------------------------------------------------------------- /src/c4emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/c4emu.c -------------------------------------------------------------------------------- /src/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cheats.c -------------------------------------------------------------------------------- /src/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cheats.h -------------------------------------------------------------------------------- /src/controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/controls.c -------------------------------------------------------------------------------- /src/controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/controls.h -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/cpuaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpuaddr.h -------------------------------------------------------------------------------- /src/cpuexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpuexec.c -------------------------------------------------------------------------------- /src/cpuexec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpuexec.h -------------------------------------------------------------------------------- /src/cpumacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpumacro.h -------------------------------------------------------------------------------- /src/cpuops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpuops.h -------------------------------------------------------------------------------- /src/cpuops_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/cpuops_.h -------------------------------------------------------------------------------- /src/crosshairs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/crosshairs.h -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/display.h -------------------------------------------------------------------------------- /src/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/dma.h -------------------------------------------------------------------------------- /src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/dsp.c -------------------------------------------------------------------------------- /src/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/dsp.h -------------------------------------------------------------------------------- /src/fxemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/fxemu.c -------------------------------------------------------------------------------- /src/fxemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/fxemu.h -------------------------------------------------------------------------------- /src/fxinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/fxinst.h -------------------------------------------------------------------------------- /src/getset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/getset.h -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/memmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/memmap.c -------------------------------------------------------------------------------- /src/memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/memmap.h -------------------------------------------------------------------------------- /src/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/messages.h -------------------------------------------------------------------------------- /src/obc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/obc1.c -------------------------------------------------------------------------------- /src/obc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/obc1.h -------------------------------------------------------------------------------- /src/pixform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/pixform.h -------------------------------------------------------------------------------- /src/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/port.h -------------------------------------------------------------------------------- /src/ppu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/ppu.c -------------------------------------------------------------------------------- /src/ppu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/ppu.h -------------------------------------------------------------------------------- /src/sa1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/sa1.c -------------------------------------------------------------------------------- /src/sa1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/sa1.h -------------------------------------------------------------------------------- /src/sdd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/sdd1.c -------------------------------------------------------------------------------- /src/sdd1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/sdd1.h -------------------------------------------------------------------------------- /src/sdd1emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/sdd1emu.h -------------------------------------------------------------------------------- /src/seta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/seta.c -------------------------------------------------------------------------------- /src/seta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/seta.h -------------------------------------------------------------------------------- /src/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/snapshot.c -------------------------------------------------------------------------------- /src/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/snapshot.h -------------------------------------------------------------------------------- /src/snes9x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/snes9x.h -------------------------------------------------------------------------------- /src/snes9x_griffin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/snes9x_griffin.c -------------------------------------------------------------------------------- /src/spc7110.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/spc7110.c -------------------------------------------------------------------------------- /src/spc7110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/spc7110.h -------------------------------------------------------------------------------- /src/spc7110dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/spc7110dec.h -------------------------------------------------------------------------------- /src/spc7110emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/spc7110emu.h -------------------------------------------------------------------------------- /src/srtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/srtc.c -------------------------------------------------------------------------------- /src/srtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/srtc.h -------------------------------------------------------------------------------- /src/tile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/tile.c -------------------------------------------------------------------------------- /src/tile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/src/tile.h -------------------------------------------------------------------------------- /vita/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/font.c -------------------------------------------------------------------------------- /vita/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/font.h -------------------------------------------------------------------------------- /vita/font_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/font_data.c -------------------------------------------------------------------------------- /vita/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/main.c -------------------------------------------------------------------------------- /vita/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/main.h -------------------------------------------------------------------------------- /vita/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/utils.c -------------------------------------------------------------------------------- /vita/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/utils.h -------------------------------------------------------------------------------- /vita/vita_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_audio.c -------------------------------------------------------------------------------- /vita/vita_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_audio.h -------------------------------------------------------------------------------- /vita/vita_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_input.c -------------------------------------------------------------------------------- /vita/vita_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_input.h -------------------------------------------------------------------------------- /vita/vita_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_menu.c -------------------------------------------------------------------------------- /vita/vita_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_menu.h -------------------------------------------------------------------------------- /vita/vita_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_video.c -------------------------------------------------------------------------------- /vita/vita_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/Snes9xVITA/HEAD/vita/vita_video.h --------------------------------------------------------------------------------