├── COPYING.DOC ├── Makefile ├── cheats.c ├── cheats.h ├── common.h ├── cpu.c ├── cpu.h ├── cpu_threaded.c ├── font.h ├── game_config.txt ├── gui.c ├── gui.h ├── input.c ├── input.h ├── main.c ├── main.h ├── memory.c ├── memory.h ├── mips_stub.S ├── psp ├── ICON0.png ├── Makefile ├── PIC1.png ├── mips_emit.h └── mips_stub.S ├── readme.txt ├── sound.c ├── sound.h ├── video.c ├── video.h ├── x86 ├── Makefile ├── x86_emit.h └── x86_stub.S ├── zip.c └── zip.h /COPYING.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/COPYING.DOC -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/Makefile -------------------------------------------------------------------------------- /cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/cheats.c -------------------------------------------------------------------------------- /cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/cheats.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/common.h -------------------------------------------------------------------------------- /cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/cpu.c -------------------------------------------------------------------------------- /cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/cpu.h -------------------------------------------------------------------------------- /cpu_threaded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/cpu_threaded.c -------------------------------------------------------------------------------- /font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/font.h -------------------------------------------------------------------------------- /game_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/game_config.txt -------------------------------------------------------------------------------- /gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/gui.c -------------------------------------------------------------------------------- /gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/gui.h -------------------------------------------------------------------------------- /input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/input.c -------------------------------------------------------------------------------- /input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/input.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/main.h -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/memory.c -------------------------------------------------------------------------------- /memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/memory.h -------------------------------------------------------------------------------- /mips_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/mips_stub.S -------------------------------------------------------------------------------- /psp/ICON0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/psp/ICON0.png -------------------------------------------------------------------------------- /psp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/psp/Makefile -------------------------------------------------------------------------------- /psp/PIC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/psp/PIC1.png -------------------------------------------------------------------------------- /psp/mips_emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/psp/mips_emit.h -------------------------------------------------------------------------------- /psp/mips_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/psp/mips_stub.S -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/readme.txt -------------------------------------------------------------------------------- /sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/sound.c -------------------------------------------------------------------------------- /sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/sound.h -------------------------------------------------------------------------------- /video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/video.c -------------------------------------------------------------------------------- /video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/video.h -------------------------------------------------------------------------------- /x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/x86/Makefile -------------------------------------------------------------------------------- /x86/x86_emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/x86/x86_emit.h -------------------------------------------------------------------------------- /x86/x86_stub.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/x86/x86_stub.S -------------------------------------------------------------------------------- /zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/zip.c -------------------------------------------------------------------------------- /zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BASLQC/gPSP/HEAD/zip.h --------------------------------------------------------------------------------