├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── psp_rin.iml └── vcs.xml ├── CMakeLists.txt ├── HowtoCompile.txt ├── ICON0.PNG ├── ICON0.xcf ├── Makefile ├── Makefile.psp ├── changes.txt ├── colbl.c ├── filer.c ├── filer.h ├── font.c ├── fontNaga10.c ├── gbcore ├── _bit_table.h ├── _mrand_table.h ├── apu.c ├── cheat.c ├── cpu.c ├── cpu_io.h ├── gb.c ├── gb.h ├── gb_types.h ├── lcd.c ├── mbc.c ├── op_cb.h ├── op_def.h ├── op_normal.h ├── rom.c └── sgb.c ├── gz.c ├── gz.h ├── image.c ├── image.h ├── lib ├── external │ ├── libpng-1.2.8-src.zip │ └── zlib-1.2.2.tar.gz ├── libpng.a ├── libpng128 │ ├── Makefile │ ├── pngconf.h │ ├── pngrio.c │ └── pngwio.c ├── png.h ├── pngconf.h ├── unziplib.a ├── unziplib │ ├── Makefile │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── unzip.c │ ├── unzip.h │ ├── unziplib.a │ ├── zconf.h │ ├── zlib.h │ ├── zlibInterface.c │ └── zlibInterface.h ├── zconf.h └── zlibInterface.h ├── license.txt ├── main.c ├── main.h ├── menu.c ├── menu.h ├── menu_credits.c ├── menu_credits.h ├── menu_rewind.c ├── menu_rewind.h ├── pg.c ├── pg.h ├── pspdocker ├── renderer.c ├── renderer.h ├── rewind.c ├── rewind.h ├── run.pspssh ├── saveload.c ├── saveload.h ├── sound.c ├── sound.h ├── startup.S_dont_use ├── syscall.c_dont_use ├── syscall.h_dont_use ├── tools.c └── tools.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | rin -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/psp_rin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.idea/psp_rin.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /HowtoCompile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/HowtoCompile.txt -------------------------------------------------------------------------------- /ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/ICON0.PNG -------------------------------------------------------------------------------- /ICON0.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/ICON0.xcf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/Makefile.psp -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/changes.txt -------------------------------------------------------------------------------- /colbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/colbl.c -------------------------------------------------------------------------------- /filer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/filer.c -------------------------------------------------------------------------------- /filer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/filer.h -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/font.c -------------------------------------------------------------------------------- /fontNaga10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/fontNaga10.c -------------------------------------------------------------------------------- /gbcore/_bit_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/_bit_table.h -------------------------------------------------------------------------------- /gbcore/_mrand_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/_mrand_table.h -------------------------------------------------------------------------------- /gbcore/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/apu.c -------------------------------------------------------------------------------- /gbcore/cheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/cheat.c -------------------------------------------------------------------------------- /gbcore/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/cpu.c -------------------------------------------------------------------------------- /gbcore/cpu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/cpu_io.h -------------------------------------------------------------------------------- /gbcore/gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/gb.c -------------------------------------------------------------------------------- /gbcore/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/gb.h -------------------------------------------------------------------------------- /gbcore/gb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/gb_types.h -------------------------------------------------------------------------------- /gbcore/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/lcd.c -------------------------------------------------------------------------------- /gbcore/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/mbc.c -------------------------------------------------------------------------------- /gbcore/op_cb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/op_cb.h -------------------------------------------------------------------------------- /gbcore/op_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/op_def.h -------------------------------------------------------------------------------- /gbcore/op_normal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/op_normal.h -------------------------------------------------------------------------------- /gbcore/rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/rom.c -------------------------------------------------------------------------------- /gbcore/sgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gbcore/sgb.c -------------------------------------------------------------------------------- /gz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gz.c -------------------------------------------------------------------------------- /gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/gz.h -------------------------------------------------------------------------------- /image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/image.c -------------------------------------------------------------------------------- /image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/image.h -------------------------------------------------------------------------------- /lib/external/libpng-1.2.8-src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/external/libpng-1.2.8-src.zip -------------------------------------------------------------------------------- /lib/external/zlib-1.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/external/zlib-1.2.2.tar.gz -------------------------------------------------------------------------------- /lib/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/libpng.a -------------------------------------------------------------------------------- /lib/libpng128/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/libpng128/Makefile -------------------------------------------------------------------------------- /lib/libpng128/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/libpng128/pngconf.h -------------------------------------------------------------------------------- /lib/libpng128/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/libpng128/pngrio.c -------------------------------------------------------------------------------- /lib/libpng128/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/libpng128/pngwio.c -------------------------------------------------------------------------------- /lib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/png.h -------------------------------------------------------------------------------- /lib/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/pngconf.h -------------------------------------------------------------------------------- /lib/unziplib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib.a -------------------------------------------------------------------------------- /lib/unziplib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/Makefile -------------------------------------------------------------------------------- /lib/unziplib/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/crypt.h -------------------------------------------------------------------------------- /lib/unziplib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/ioapi.c -------------------------------------------------------------------------------- /lib/unziplib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/ioapi.h -------------------------------------------------------------------------------- /lib/unziplib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/unzip.c -------------------------------------------------------------------------------- /lib/unziplib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/unzip.h -------------------------------------------------------------------------------- /lib/unziplib/unziplib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/unziplib.a -------------------------------------------------------------------------------- /lib/unziplib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/zconf.h -------------------------------------------------------------------------------- /lib/unziplib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/zlib.h -------------------------------------------------------------------------------- /lib/unziplib/zlibInterface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/zlibInterface.c -------------------------------------------------------------------------------- /lib/unziplib/zlibInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/unziplib/zlibInterface.h -------------------------------------------------------------------------------- /lib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/zconf.h -------------------------------------------------------------------------------- /lib/zlibInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/lib/zlibInterface.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/license.txt -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/main.h -------------------------------------------------------------------------------- /menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/menu.c -------------------------------------------------------------------------------- /menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/menu.h -------------------------------------------------------------------------------- /menu_credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/menu_credits.c -------------------------------------------------------------------------------- /menu_credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/menu_credits.h -------------------------------------------------------------------------------- /menu_rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/menu_rewind.c -------------------------------------------------------------------------------- /menu_rewind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/menu_rewind.h -------------------------------------------------------------------------------- /pg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/pg.c -------------------------------------------------------------------------------- /pg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/pg.h -------------------------------------------------------------------------------- /pspdocker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/pspdocker -------------------------------------------------------------------------------- /renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/renderer.c -------------------------------------------------------------------------------- /renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/renderer.h -------------------------------------------------------------------------------- /rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/rewind.c -------------------------------------------------------------------------------- /rewind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/rewind.h -------------------------------------------------------------------------------- /run.pspssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/run.pspssh -------------------------------------------------------------------------------- /saveload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/saveload.c -------------------------------------------------------------------------------- /saveload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/saveload.h -------------------------------------------------------------------------------- /sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/sound.c -------------------------------------------------------------------------------- /sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/sound.h -------------------------------------------------------------------------------- /startup.S_dont_use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/startup.S_dont_use -------------------------------------------------------------------------------- /syscall.c_dont_use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/syscall.c_dont_use -------------------------------------------------------------------------------- /syscall.h_dont_use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/syscall.h_dont_use -------------------------------------------------------------------------------- /tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/tools.c -------------------------------------------------------------------------------- /tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbarczak/psp_rin/HEAD/tools.h --------------------------------------------------------------------------------