├── .clang-format ├── .gitignore ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── README.md ├── app ├── 3rdparty │ ├── intraFont-G │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README │ │ ├── fonttest │ │ │ ├── Makefile │ │ │ └── fonttest.c │ │ ├── include │ │ │ ├── intraFont.h │ │ │ └── libccc.h │ │ ├── intraFont.c │ │ ├── libccc.c │ │ ├── libraries │ │ │ ├── framebuffer.c │ │ │ ├── framebuffer.h │ │ │ ├── graphics.c │ │ │ └── graphics.h │ │ └── sinusoid │ │ │ ├── Makefile │ │ │ └── sinus.c │ └── rapidjson │ │ ├── allocators.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── CMakeLists.txt ├── resources │ ├── PARAM.SFO │ ├── PARAM_GO.SFO │ ├── icon.xcf │ ├── icon0.png │ ├── icon0.xcf │ ├── parallaxleft.tga │ ├── parallaxright.tga │ ├── pic1.png │ └── symbol.pgf └── src │ ├── animation.h │ ├── animations.cpp │ ├── animations.h │ ├── application.cpp │ ├── application.h │ ├── backgroundview.cpp │ ├── backgroundview.h │ ├── blockallocator.cpp │ ├── blockallocator.h │ ├── buttonarbiter.cpp │ ├── buttonarbiter.h │ ├── buttonevent.cpp │ ├── buttonevent.h │ ├── buttontransition.cpp │ ├── buttontransition.h │ ├── circularbuffer.h │ ├── colouredrectangle.cpp │ ├── colouredrectangle.h │ ├── compatibilityconfig.cpp │ ├── compatibilityconfig.h │ ├── compatibilitymodule.cpp │ ├── compatibilitymodule.h │ ├── configscreen.cpp │ ├── configscreen.h │ ├── creditsscreen.cpp │ ├── creditsscreen.h │ ├── errorscreen.cpp │ ├── errorscreen.h │ ├── event.cpp │ ├── event.h │ ├── eventhandler.h │ ├── eventsource.cpp │ ├── eventsource.h │ ├── exitscreen.cpp │ ├── exitscreen.h │ ├── firework.cpp │ ├── firework.h │ ├── flashingrectangle.cpp │ ├── flashingrectangle.h │ ├── font.cpp │ ├── font.h │ ├── font2.h │ ├── font_png.h │ ├── fontgen.cpp │ ├── fontgen.h │ ├── fontmanager.cpp │ ├── fontmanager.h │ ├── functortransition.cpp │ ├── functortransition.h │ ├── glfont.h │ ├── gltext.cpp │ ├── gltext.h │ ├── graphicsdevice.cpp │ ├── graphicsdevice.h │ ├── homescreen.cpp │ ├── homescreen.h │ ├── infinityintro.cpp │ ├── infinityintro.h │ ├── initstate.h │ ├── installscreen.cpp │ ├── installscreen.h │ ├── installupdate.cpp │ ├── installupdate.h │ ├── installupdatescreen.cpp │ ├── installupdatescreen.h │ ├── localupdatescreen.cpp │ ├── localupdatescreen.h │ ├── main.cpp │ ├── menu.cpp │ ├── menu.h │ ├── menuselectionevent.cpp │ ├── menuselectionevent.h │ ├── menuselectiontransition.cpp │ ├── menuselectiontransition.h │ ├── mutex.cpp │ ├── mutex.h │ ├── mutexlocker.cpp │ ├── mutexlocker.h │ ├── numberanimation.cpp │ ├── numberanimation.h │ ├── pageview.cpp │ ├── pageview.h │ ├── particlesource.cpp │ ├── particlesource.h │ ├── pspguwrapper.cpp │ ├── pspguwrapper.h │ ├── randomgenerator.cpp │ ├── randomgenerator.h │ ├── rectangle.cpp │ ├── rectangle.h │ ├── scene.cpp │ ├── scene.h │ ├── snowscene.cpp │ ├── snowscene.h │ ├── state.cpp │ ├── state.h │ ├── statemachine.cpp │ ├── statemachine.h │ ├── stateview.cpp │ ├── stateview.h │ ├── tailedparticle.cpp │ ├── tailedparticle.h │ ├── textrenderer.cpp │ ├── textrenderer.h │ ├── texture.cpp │ ├── texture.h │ ├── texture2.h │ ├── tgatexture.cpp │ ├── tgatexture.h │ ├── thread.cpp │ ├── thread.h │ ├── timer.cpp │ ├── timer.h │ ├── transition.cpp │ ├── transition.h │ ├── updateinformation.cpp │ ├── updateinformation.h │ ├── updateinformationparser.cpp │ ├── updateinformationparser.h │ ├── uptodatescreen.cpp │ ├── uptodatescreen.h │ ├── utility.cpp │ ├── utility.h │ ├── vertextype.h │ ├── view.cpp │ ├── view.h │ ├── viewmanager.cpp │ ├── viewmanager.h │ ├── vram.c │ └── vram.h ├── cmake └── psp-toolchain.cmake ├── firmware ├── CMakeLists.txt ├── bootloader │ ├── CMakeLists.txt │ ├── exports.exp │ ├── include │ │ └── kernel_helper.h │ └── src │ │ ├── intercept.S │ │ └── main.c ├── compat_interface │ ├── CMakeLists.txt │ └── include │ │ └── compat_interface.h ├── infinityboot │ ├── 661mapfile.txt │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── exports.exp │ ├── include │ │ └── libinfinity.h │ └── src │ │ └── main.c ├── infinityctrl │ ├── 661mapfile.txt │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── exports.exp │ ├── include │ │ └── libinfinity.h │ └── src │ │ ├── infinity_ver.S │ │ ├── libinfinity.c │ │ └── main.c ├── mecompat │ ├── CMakeLists.txt │ ├── README.md │ ├── linkfile.l │ └── src │ │ ├── crt0.S │ │ └── main.c ├── procompat │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── linkfile.l │ └── src │ │ ├── crt0.S │ │ ├── main.c │ │ └── rebootex_conf.h ├── reboot │ ├── 661mapfile.txt │ ├── CMakeLists.txt │ ├── exports.exp │ ├── include │ │ └── reboot.h │ └── src │ │ ├── reboot.c │ │ ├── utility.c │ │ └── utility.h ├── rebootex │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ │ └── rebootex_interface.h │ ├── linkfile.l │ └── src │ │ ├── btcnf.c │ │ ├── btcnf.h │ │ ├── btcnfpatch.c │ │ ├── btcnfpatch.h │ │ ├── compatibility.c │ │ ├── compatibility.h │ │ ├── crt0.S │ │ ├── kprintf.c │ │ ├── kprintf.h │ │ ├── lfatpatch.c │ │ ├── lfatpatch.h │ │ ├── libc.c │ │ ├── loadcorepatch.c │ │ ├── loadcorepatch.h │ │ ├── main.c │ │ ├── patch.h │ │ ├── psp_uart.c │ │ ├── psp_uart.h │ │ ├── syscon.c │ │ ├── syscon.h │ │ ├── sysreg.c │ │ ├── sysreg.h │ │ ├── utility.c │ │ └── utility.h └── recovery │ ├── CMakeLists.txt │ ├── README.md │ ├── linkfile.l │ └── src │ ├── crt0.S │ └── main.c ├── kernel_helper ├── 661mapfile.txt ├── CMakeLists.txt ├── exports.exp ├── include │ └── kernel_helper.h └── src │ └── main.c ├── kexploit ├── CMakeLists.txt ├── include │ └── kexploit.h └── src │ ├── cache.cpp │ ├── cache.h │ ├── findproc.cpp │ ├── findproc.h │ ├── k660.cpp │ ├── k660.h │ └── main.cpp ├── libconfig ├── 661mapfile.txt ├── CMakeLists.txt ├── exports.exp ├── include │ └── config.h └── src │ ├── config.c │ └── main.c ├── sdk ├── CMakeLists.txt ├── include │ ├── kubridge.h │ ├── pspinit.h │ ├── psploadcore.h │ ├── psploadexec_kernel.h │ ├── pspmodulemgr.h │ ├── pspmodulemgr_kernel.h │ ├── pspsysmem.h │ ├── pspsysmem_kernel.h │ ├── pspusbdevice.h │ ├── systemctrl.h │ ├── systemctrl_se.h │ └── vshctrl.h ├── lib │ ├── libpspinit.a │ ├── libpspkdebug.a │ ├── libpspkubridge.a │ ├── libpsploadexec_kernel.a │ ├── libpspmodulemgr_kernel.a │ ├── libpspmodulemgr_user.a │ ├── libpspsysmem_kernel.a │ ├── libpspsysmem_user.a │ ├── libpspsystemctrl_kernel.a │ ├── libpspsystemctrl_user.a │ ├── libpspumd_kernel.a │ ├── libpspusbdevice.a │ ├── libpspusbdevice_driver.a │ └── libpspvshctrl.a └── readme.txt ├── stubs ├── CMakeLists.txt ├── memlmd │ ├── CMakeLists.txt │ ├── include │ │ └── memlmd.h │ └── semaphore.S ├── modulemgr │ ├── CMakeLists.txt │ ├── ModuleMgrForUser.S │ └── include │ │ └── modulemgr.h ├── netifhandle │ ├── CMakeLists.txt │ ├── include │ │ └── netifhandle.h │ └── sceNetIfhandle_lib.S ├── power │ ├── CMakeLists.txt │ └── scePower.S ├── syscon │ ├── CMakeLists.txt │ ├── include │ │ └── syscon.h │ └── sceSyscon_driver.S └── vshbridge │ ├── CMakeLists.txt │ ├── include │ └── vshbridge.h │ └── sceVshBridge.S ├── tools ├── CMakeLists.txt ├── bin2cpp │ └── bin2cpp.py ├── hashgen │ └── hashgen.py ├── psppack │ └── psppack.py └── psptools │ ├── pack_kernel_module.py │ ├── pack_updater.py │ ├── pack_user_fw_module.py │ └── psptool │ ├── __init__.py │ ├── kirk.py │ ├── pack.py │ ├── pbp.py │ ├── prx.py │ ├── prxtypes │ ├── __init__.py │ ├── common.py │ ├── type2.py │ ├── type6.py │ ├── type8.py │ └── type9.py │ └── psar.py └── utils ├── CMakeLists.txt └── include └── pspmacro.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/README.md -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/CMakeLists.txt -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/LICENSE -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/Makefile -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/README -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/fonttest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/fonttest/Makefile -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/fonttest/fonttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/fonttest/fonttest.c -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/include/intraFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/include/intraFont.h -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/include/libccc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/include/libccc.h -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/intraFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/intraFont.c -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/libccc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/libccc.c -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/libraries/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/libraries/framebuffer.c -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/libraries/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/libraries/framebuffer.h -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/libraries/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/libraries/graphics.c -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/libraries/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/libraries/graphics.h -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/sinusoid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/sinusoid/Makefile -------------------------------------------------------------------------------- /app/3rdparty/intraFont-G/sinusoid/sinus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/intraFont-G/sinusoid/sinus.c -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/allocators.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/document.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/encodings.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/error/en.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/error/error.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/memorystream.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/pointer.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/reader.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /app/3rdparty/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/3rdparty/rapidjson/writer.h -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/resources/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/PARAM.SFO -------------------------------------------------------------------------------- /app/resources/PARAM_GO.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/PARAM_GO.SFO -------------------------------------------------------------------------------- /app/resources/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/icon.xcf -------------------------------------------------------------------------------- /app/resources/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/icon0.png -------------------------------------------------------------------------------- /app/resources/icon0.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/icon0.xcf -------------------------------------------------------------------------------- /app/resources/parallaxleft.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/parallaxleft.tga -------------------------------------------------------------------------------- /app/resources/parallaxright.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/parallaxright.tga -------------------------------------------------------------------------------- /app/resources/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/pic1.png -------------------------------------------------------------------------------- /app/resources/symbol.pgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/resources/symbol.pgf -------------------------------------------------------------------------------- /app/src/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/animation.h -------------------------------------------------------------------------------- /app/src/animations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/animations.cpp -------------------------------------------------------------------------------- /app/src/animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/animations.h -------------------------------------------------------------------------------- /app/src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/application.cpp -------------------------------------------------------------------------------- /app/src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/application.h -------------------------------------------------------------------------------- /app/src/backgroundview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/backgroundview.cpp -------------------------------------------------------------------------------- /app/src/backgroundview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/backgroundview.h -------------------------------------------------------------------------------- /app/src/blockallocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/blockallocator.cpp -------------------------------------------------------------------------------- /app/src/blockallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/blockallocator.h -------------------------------------------------------------------------------- /app/src/buttonarbiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/buttonarbiter.cpp -------------------------------------------------------------------------------- /app/src/buttonarbiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/buttonarbiter.h -------------------------------------------------------------------------------- /app/src/buttonevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/buttonevent.cpp -------------------------------------------------------------------------------- /app/src/buttonevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/buttonevent.h -------------------------------------------------------------------------------- /app/src/buttontransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/buttontransition.cpp -------------------------------------------------------------------------------- /app/src/buttontransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/buttontransition.h -------------------------------------------------------------------------------- /app/src/circularbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/circularbuffer.h -------------------------------------------------------------------------------- /app/src/colouredrectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/colouredrectangle.cpp -------------------------------------------------------------------------------- /app/src/colouredrectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/colouredrectangle.h -------------------------------------------------------------------------------- /app/src/compatibilityconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/compatibilityconfig.cpp -------------------------------------------------------------------------------- /app/src/compatibilityconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/compatibilityconfig.h -------------------------------------------------------------------------------- /app/src/compatibilitymodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/compatibilitymodule.cpp -------------------------------------------------------------------------------- /app/src/compatibilitymodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/compatibilitymodule.h -------------------------------------------------------------------------------- /app/src/configscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/configscreen.cpp -------------------------------------------------------------------------------- /app/src/configscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/configscreen.h -------------------------------------------------------------------------------- /app/src/creditsscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/creditsscreen.cpp -------------------------------------------------------------------------------- /app/src/creditsscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/creditsscreen.h -------------------------------------------------------------------------------- /app/src/errorscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/errorscreen.cpp -------------------------------------------------------------------------------- /app/src/errorscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/errorscreen.h -------------------------------------------------------------------------------- /app/src/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/event.cpp -------------------------------------------------------------------------------- /app/src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/event.h -------------------------------------------------------------------------------- /app/src/eventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/eventhandler.h -------------------------------------------------------------------------------- /app/src/eventsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/eventsource.cpp -------------------------------------------------------------------------------- /app/src/eventsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/eventsource.h -------------------------------------------------------------------------------- /app/src/exitscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/exitscreen.cpp -------------------------------------------------------------------------------- /app/src/exitscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/exitscreen.h -------------------------------------------------------------------------------- /app/src/firework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/firework.cpp -------------------------------------------------------------------------------- /app/src/firework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/firework.h -------------------------------------------------------------------------------- /app/src/flashingrectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/flashingrectangle.cpp -------------------------------------------------------------------------------- /app/src/flashingrectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/flashingrectangle.h -------------------------------------------------------------------------------- /app/src/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/font.cpp -------------------------------------------------------------------------------- /app/src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/font.h -------------------------------------------------------------------------------- /app/src/font2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/font2.h -------------------------------------------------------------------------------- /app/src/font_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/font_png.h -------------------------------------------------------------------------------- /app/src/fontgen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/fontgen.cpp -------------------------------------------------------------------------------- /app/src/fontgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/fontgen.h -------------------------------------------------------------------------------- /app/src/fontmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/fontmanager.cpp -------------------------------------------------------------------------------- /app/src/fontmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/fontmanager.h -------------------------------------------------------------------------------- /app/src/functortransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/functortransition.cpp -------------------------------------------------------------------------------- /app/src/functortransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/functortransition.h -------------------------------------------------------------------------------- /app/src/glfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/glfont.h -------------------------------------------------------------------------------- /app/src/gltext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/gltext.cpp -------------------------------------------------------------------------------- /app/src/gltext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/gltext.h -------------------------------------------------------------------------------- /app/src/graphicsdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/graphicsdevice.cpp -------------------------------------------------------------------------------- /app/src/graphicsdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/graphicsdevice.h -------------------------------------------------------------------------------- /app/src/homescreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/homescreen.cpp -------------------------------------------------------------------------------- /app/src/homescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/homescreen.h -------------------------------------------------------------------------------- /app/src/infinityintro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/infinityintro.cpp -------------------------------------------------------------------------------- /app/src/infinityintro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/infinityintro.h -------------------------------------------------------------------------------- /app/src/initstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/initstate.h -------------------------------------------------------------------------------- /app/src/installscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/installscreen.cpp -------------------------------------------------------------------------------- /app/src/installscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/installscreen.h -------------------------------------------------------------------------------- /app/src/installupdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/installupdate.cpp -------------------------------------------------------------------------------- /app/src/installupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/installupdate.h -------------------------------------------------------------------------------- /app/src/installupdatescreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/installupdatescreen.cpp -------------------------------------------------------------------------------- /app/src/installupdatescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/installupdatescreen.h -------------------------------------------------------------------------------- /app/src/localupdatescreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/localupdatescreen.cpp -------------------------------------------------------------------------------- /app/src/localupdatescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/localupdatescreen.h -------------------------------------------------------------------------------- /app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/main.cpp -------------------------------------------------------------------------------- /app/src/menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/menu.cpp -------------------------------------------------------------------------------- /app/src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/menu.h -------------------------------------------------------------------------------- /app/src/menuselectionevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/menuselectionevent.cpp -------------------------------------------------------------------------------- /app/src/menuselectionevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/menuselectionevent.h -------------------------------------------------------------------------------- /app/src/menuselectiontransition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/menuselectiontransition.cpp -------------------------------------------------------------------------------- /app/src/menuselectiontransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/menuselectiontransition.h -------------------------------------------------------------------------------- /app/src/mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/mutex.cpp -------------------------------------------------------------------------------- /app/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/mutex.h -------------------------------------------------------------------------------- /app/src/mutexlocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/mutexlocker.cpp -------------------------------------------------------------------------------- /app/src/mutexlocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/mutexlocker.h -------------------------------------------------------------------------------- /app/src/numberanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/numberanimation.cpp -------------------------------------------------------------------------------- /app/src/numberanimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/numberanimation.h -------------------------------------------------------------------------------- /app/src/pageview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/pageview.cpp -------------------------------------------------------------------------------- /app/src/pageview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/pageview.h -------------------------------------------------------------------------------- /app/src/particlesource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/particlesource.cpp -------------------------------------------------------------------------------- /app/src/particlesource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/particlesource.h -------------------------------------------------------------------------------- /app/src/pspguwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/pspguwrapper.cpp -------------------------------------------------------------------------------- /app/src/pspguwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/pspguwrapper.h -------------------------------------------------------------------------------- /app/src/randomgenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/randomgenerator.cpp -------------------------------------------------------------------------------- /app/src/randomgenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/randomgenerator.h -------------------------------------------------------------------------------- /app/src/rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/rectangle.cpp -------------------------------------------------------------------------------- /app/src/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/rectangle.h -------------------------------------------------------------------------------- /app/src/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/scene.cpp -------------------------------------------------------------------------------- /app/src/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/scene.h -------------------------------------------------------------------------------- /app/src/snowscene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/snowscene.cpp -------------------------------------------------------------------------------- /app/src/snowscene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/snowscene.h -------------------------------------------------------------------------------- /app/src/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/state.cpp -------------------------------------------------------------------------------- /app/src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/state.h -------------------------------------------------------------------------------- /app/src/statemachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/statemachine.cpp -------------------------------------------------------------------------------- /app/src/statemachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/statemachine.h -------------------------------------------------------------------------------- /app/src/stateview.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/stateview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/stateview.h -------------------------------------------------------------------------------- /app/src/tailedparticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/tailedparticle.cpp -------------------------------------------------------------------------------- /app/src/tailedparticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/tailedparticle.h -------------------------------------------------------------------------------- /app/src/textrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/textrenderer.cpp -------------------------------------------------------------------------------- /app/src/textrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/textrenderer.h -------------------------------------------------------------------------------- /app/src/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/texture.cpp -------------------------------------------------------------------------------- /app/src/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/texture.h -------------------------------------------------------------------------------- /app/src/texture2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/texture2.h -------------------------------------------------------------------------------- /app/src/tgatexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/tgatexture.cpp -------------------------------------------------------------------------------- /app/src/tgatexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/tgatexture.h -------------------------------------------------------------------------------- /app/src/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/thread.cpp -------------------------------------------------------------------------------- /app/src/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/thread.h -------------------------------------------------------------------------------- /app/src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/timer.cpp -------------------------------------------------------------------------------- /app/src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/timer.h -------------------------------------------------------------------------------- /app/src/transition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/transition.cpp -------------------------------------------------------------------------------- /app/src/transition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/transition.h -------------------------------------------------------------------------------- /app/src/updateinformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/updateinformation.cpp -------------------------------------------------------------------------------- /app/src/updateinformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/updateinformation.h -------------------------------------------------------------------------------- /app/src/updateinformationparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/updateinformationparser.cpp -------------------------------------------------------------------------------- /app/src/updateinformationparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/updateinformationparser.h -------------------------------------------------------------------------------- /app/src/uptodatescreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/uptodatescreen.cpp -------------------------------------------------------------------------------- /app/src/uptodatescreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/uptodatescreen.h -------------------------------------------------------------------------------- /app/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/utility.cpp -------------------------------------------------------------------------------- /app/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/utility.h -------------------------------------------------------------------------------- /app/src/vertextype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/vertextype.h -------------------------------------------------------------------------------- /app/src/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/view.cpp -------------------------------------------------------------------------------- /app/src/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/view.h -------------------------------------------------------------------------------- /app/src/viewmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/viewmanager.cpp -------------------------------------------------------------------------------- /app/src/viewmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/viewmanager.h -------------------------------------------------------------------------------- /app/src/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/vram.c -------------------------------------------------------------------------------- /app/src/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/app/src/vram.h -------------------------------------------------------------------------------- /cmake/psp-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/cmake/psp-toolchain.cmake -------------------------------------------------------------------------------- /firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/bootloader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/bootloader/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/bootloader/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/bootloader/exports.exp -------------------------------------------------------------------------------- /firmware/bootloader/include/kernel_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/bootloader/include/kernel_helper.h -------------------------------------------------------------------------------- /firmware/bootloader/src/intercept.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/bootloader/src/intercept.S -------------------------------------------------------------------------------- /firmware/bootloader/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/bootloader/src/main.c -------------------------------------------------------------------------------- /firmware/compat_interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/compat_interface/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/compat_interface/include/compat_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/compat_interface/include/compat_interface.h -------------------------------------------------------------------------------- /firmware/infinityboot/661mapfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityboot/661mapfile.txt -------------------------------------------------------------------------------- /firmware/infinityboot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityboot/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/infinityboot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityboot/LICENSE -------------------------------------------------------------------------------- /firmware/infinityboot/README.md: -------------------------------------------------------------------------------- 1 | TODO: this -------------------------------------------------------------------------------- /firmware/infinityboot/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityboot/exports.exp -------------------------------------------------------------------------------- /firmware/infinityboot/include/libinfinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityboot/include/libinfinity.h -------------------------------------------------------------------------------- /firmware/infinityboot/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityboot/src/main.c -------------------------------------------------------------------------------- /firmware/infinityctrl/661mapfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/661mapfile.txt -------------------------------------------------------------------------------- /firmware/infinityctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/infinityctrl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/LICENSE -------------------------------------------------------------------------------- /firmware/infinityctrl/README.md: -------------------------------------------------------------------------------- 1 | TODO: this -------------------------------------------------------------------------------- /firmware/infinityctrl/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/exports.exp -------------------------------------------------------------------------------- /firmware/infinityctrl/include/libinfinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/include/libinfinity.h -------------------------------------------------------------------------------- /firmware/infinityctrl/src/infinity_ver.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/src/infinity_ver.S -------------------------------------------------------------------------------- /firmware/infinityctrl/src/libinfinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/src/libinfinity.c -------------------------------------------------------------------------------- /firmware/infinityctrl/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/infinityctrl/src/main.c -------------------------------------------------------------------------------- /firmware/mecompat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/mecompat/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/mecompat/README.md: -------------------------------------------------------------------------------- 1 | TODO: this -------------------------------------------------------------------------------- /firmware/mecompat/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/mecompat/linkfile.l -------------------------------------------------------------------------------- /firmware/mecompat/src/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/mecompat/src/crt0.S -------------------------------------------------------------------------------- /firmware/mecompat/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/mecompat/src/main.c -------------------------------------------------------------------------------- /firmware/procompat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/procompat/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/procompat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/procompat/LICENSE -------------------------------------------------------------------------------- /firmware/procompat/README.md: -------------------------------------------------------------------------------- 1 | TODO: this -------------------------------------------------------------------------------- /firmware/procompat/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/procompat/linkfile.l -------------------------------------------------------------------------------- /firmware/procompat/src/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/procompat/src/crt0.S -------------------------------------------------------------------------------- /firmware/procompat/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/procompat/src/main.c -------------------------------------------------------------------------------- /firmware/procompat/src/rebootex_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/procompat/src/rebootex_conf.h -------------------------------------------------------------------------------- /firmware/reboot/661mapfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/661mapfile.txt -------------------------------------------------------------------------------- /firmware/reboot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/reboot/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/exports.exp -------------------------------------------------------------------------------- /firmware/reboot/include/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/include/reboot.h -------------------------------------------------------------------------------- /firmware/reboot/src/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/src/reboot.c -------------------------------------------------------------------------------- /firmware/reboot/src/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/src/utility.c -------------------------------------------------------------------------------- /firmware/reboot/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/reboot/src/utility.h -------------------------------------------------------------------------------- /firmware/rebootex/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/rebootex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/LICENSE -------------------------------------------------------------------------------- /firmware/rebootex/README.md: -------------------------------------------------------------------------------- 1 | TODO: this -------------------------------------------------------------------------------- /firmware/rebootex/include/rebootex_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/include/rebootex_interface.h -------------------------------------------------------------------------------- /firmware/rebootex/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/linkfile.l -------------------------------------------------------------------------------- /firmware/rebootex/src/btcnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/btcnf.c -------------------------------------------------------------------------------- /firmware/rebootex/src/btcnf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/btcnf.h -------------------------------------------------------------------------------- /firmware/rebootex/src/btcnfpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/btcnfpatch.c -------------------------------------------------------------------------------- /firmware/rebootex/src/btcnfpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/btcnfpatch.h -------------------------------------------------------------------------------- /firmware/rebootex/src/compatibility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/compatibility.c -------------------------------------------------------------------------------- /firmware/rebootex/src/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/compatibility.h -------------------------------------------------------------------------------- /firmware/rebootex/src/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/crt0.S -------------------------------------------------------------------------------- /firmware/rebootex/src/kprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/kprintf.c -------------------------------------------------------------------------------- /firmware/rebootex/src/kprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/kprintf.h -------------------------------------------------------------------------------- /firmware/rebootex/src/lfatpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/lfatpatch.c -------------------------------------------------------------------------------- /firmware/rebootex/src/lfatpatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/lfatpatch.h -------------------------------------------------------------------------------- /firmware/rebootex/src/libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/libc.c -------------------------------------------------------------------------------- /firmware/rebootex/src/loadcorepatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/loadcorepatch.c -------------------------------------------------------------------------------- /firmware/rebootex/src/loadcorepatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/loadcorepatch.h -------------------------------------------------------------------------------- /firmware/rebootex/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/main.c -------------------------------------------------------------------------------- /firmware/rebootex/src/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/patch.h -------------------------------------------------------------------------------- /firmware/rebootex/src/psp_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/psp_uart.c -------------------------------------------------------------------------------- /firmware/rebootex/src/psp_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/psp_uart.h -------------------------------------------------------------------------------- /firmware/rebootex/src/syscon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/syscon.c -------------------------------------------------------------------------------- /firmware/rebootex/src/syscon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/syscon.h -------------------------------------------------------------------------------- /firmware/rebootex/src/sysreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/sysreg.c -------------------------------------------------------------------------------- /firmware/rebootex/src/sysreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/sysreg.h -------------------------------------------------------------------------------- /firmware/rebootex/src/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/utility.c -------------------------------------------------------------------------------- /firmware/rebootex/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/rebootex/src/utility.h -------------------------------------------------------------------------------- /firmware/recovery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/recovery/CMakeLists.txt -------------------------------------------------------------------------------- /firmware/recovery/README.md: -------------------------------------------------------------------------------- 1 | TODO: this -------------------------------------------------------------------------------- /firmware/recovery/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/recovery/linkfile.l -------------------------------------------------------------------------------- /firmware/recovery/src/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/recovery/src/crt0.S -------------------------------------------------------------------------------- /firmware/recovery/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/firmware/recovery/src/main.c -------------------------------------------------------------------------------- /kernel_helper/661mapfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kernel_helper/661mapfile.txt -------------------------------------------------------------------------------- /kernel_helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kernel_helper/CMakeLists.txt -------------------------------------------------------------------------------- /kernel_helper/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kernel_helper/exports.exp -------------------------------------------------------------------------------- /kernel_helper/include/kernel_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kernel_helper/include/kernel_helper.h -------------------------------------------------------------------------------- /kernel_helper/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kernel_helper/src/main.c -------------------------------------------------------------------------------- /kexploit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/CMakeLists.txt -------------------------------------------------------------------------------- /kexploit/include/kexploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/include/kexploit.h -------------------------------------------------------------------------------- /kexploit/src/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/cache.cpp -------------------------------------------------------------------------------- /kexploit/src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/cache.h -------------------------------------------------------------------------------- /kexploit/src/findproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/findproc.cpp -------------------------------------------------------------------------------- /kexploit/src/findproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/findproc.h -------------------------------------------------------------------------------- /kexploit/src/k660.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/k660.cpp -------------------------------------------------------------------------------- /kexploit/src/k660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/k660.h -------------------------------------------------------------------------------- /kexploit/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/kexploit/src/main.cpp -------------------------------------------------------------------------------- /libconfig/661mapfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/libconfig/661mapfile.txt -------------------------------------------------------------------------------- /libconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/libconfig/CMakeLists.txt -------------------------------------------------------------------------------- /libconfig/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/libconfig/exports.exp -------------------------------------------------------------------------------- /libconfig/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/libconfig/include/config.h -------------------------------------------------------------------------------- /libconfig/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/libconfig/src/config.c -------------------------------------------------------------------------------- /libconfig/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/libconfig/src/main.c -------------------------------------------------------------------------------- /sdk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/CMakeLists.txt -------------------------------------------------------------------------------- /sdk/include/kubridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/kubridge.h -------------------------------------------------------------------------------- /sdk/include/pspinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/pspinit.h -------------------------------------------------------------------------------- /sdk/include/psploadcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/psploadcore.h -------------------------------------------------------------------------------- /sdk/include/psploadexec_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/psploadexec_kernel.h -------------------------------------------------------------------------------- /sdk/include/pspmodulemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/pspmodulemgr.h -------------------------------------------------------------------------------- /sdk/include/pspmodulemgr_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/pspmodulemgr_kernel.h -------------------------------------------------------------------------------- /sdk/include/pspsysmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/pspsysmem.h -------------------------------------------------------------------------------- /sdk/include/pspsysmem_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/pspsysmem_kernel.h -------------------------------------------------------------------------------- /sdk/include/pspusbdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/pspusbdevice.h -------------------------------------------------------------------------------- /sdk/include/systemctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/systemctrl.h -------------------------------------------------------------------------------- /sdk/include/systemctrl_se.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/systemctrl_se.h -------------------------------------------------------------------------------- /sdk/include/vshctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/include/vshctrl.h -------------------------------------------------------------------------------- /sdk/lib/libpspinit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspinit.a -------------------------------------------------------------------------------- /sdk/lib/libpspkdebug.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspkdebug.a -------------------------------------------------------------------------------- /sdk/lib/libpspkubridge.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspkubridge.a -------------------------------------------------------------------------------- /sdk/lib/libpsploadexec_kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpsploadexec_kernel.a -------------------------------------------------------------------------------- /sdk/lib/libpspmodulemgr_kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspmodulemgr_kernel.a -------------------------------------------------------------------------------- /sdk/lib/libpspmodulemgr_user.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspmodulemgr_user.a -------------------------------------------------------------------------------- /sdk/lib/libpspsysmem_kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspsysmem_kernel.a -------------------------------------------------------------------------------- /sdk/lib/libpspsysmem_user.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspsysmem_user.a -------------------------------------------------------------------------------- /sdk/lib/libpspsystemctrl_kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspsystemctrl_kernel.a -------------------------------------------------------------------------------- /sdk/lib/libpspsystemctrl_user.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspsystemctrl_user.a -------------------------------------------------------------------------------- /sdk/lib/libpspumd_kernel.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspumd_kernel.a -------------------------------------------------------------------------------- /sdk/lib/libpspusbdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspusbdevice.a -------------------------------------------------------------------------------- /sdk/lib/libpspusbdevice_driver.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspusbdevice_driver.a -------------------------------------------------------------------------------- /sdk/lib/libpspvshctrl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/lib/libpspvshctrl.a -------------------------------------------------------------------------------- /sdk/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/sdk/readme.txt -------------------------------------------------------------------------------- /stubs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/memlmd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/memlmd/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/memlmd/include/memlmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/memlmd/include/memlmd.h -------------------------------------------------------------------------------- /stubs/memlmd/semaphore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/memlmd/semaphore.S -------------------------------------------------------------------------------- /stubs/modulemgr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/modulemgr/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/modulemgr/ModuleMgrForUser.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/modulemgr/ModuleMgrForUser.S -------------------------------------------------------------------------------- /stubs/modulemgr/include/modulemgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/modulemgr/include/modulemgr.h -------------------------------------------------------------------------------- /stubs/netifhandle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/netifhandle/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/netifhandle/include/netifhandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/netifhandle/include/netifhandle.h -------------------------------------------------------------------------------- /stubs/netifhandle/sceNetIfhandle_lib.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/netifhandle/sceNetIfhandle_lib.S -------------------------------------------------------------------------------- /stubs/power/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/power/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/power/scePower.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/power/scePower.S -------------------------------------------------------------------------------- /stubs/syscon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/syscon/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/syscon/include/syscon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/syscon/include/syscon.h -------------------------------------------------------------------------------- /stubs/syscon/sceSyscon_driver.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/syscon/sceSyscon_driver.S -------------------------------------------------------------------------------- /stubs/vshbridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/vshbridge/CMakeLists.txt -------------------------------------------------------------------------------- /stubs/vshbridge/include/vshbridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/vshbridge/include/vshbridge.h -------------------------------------------------------------------------------- /stubs/vshbridge/sceVshBridge.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/stubs/vshbridge/sceVshBridge.S -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bin2cpp/bin2cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/bin2cpp/bin2cpp.py -------------------------------------------------------------------------------- /tools/hashgen/hashgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/hashgen/hashgen.py -------------------------------------------------------------------------------- /tools/psppack/psppack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psppack/psppack.py -------------------------------------------------------------------------------- /tools/psptools/pack_kernel_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/pack_kernel_module.py -------------------------------------------------------------------------------- /tools/psptools/pack_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/pack_updater.py -------------------------------------------------------------------------------- /tools/psptools/pack_user_fw_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/pack_user_fw_module.py -------------------------------------------------------------------------------- /tools/psptools/psptool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/psptools/psptool/kirk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/kirk.py -------------------------------------------------------------------------------- /tools/psptools/psptool/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/pack.py -------------------------------------------------------------------------------- /tools/psptools/psptool/pbp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/pbp.py -------------------------------------------------------------------------------- /tools/psptools/psptool/prx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/prx.py -------------------------------------------------------------------------------- /tools/psptools/psptool/prxtypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/psptools/psptool/prxtypes/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/prxtypes/common.py -------------------------------------------------------------------------------- /tools/psptools/psptool/prxtypes/type2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/prxtypes/type2.py -------------------------------------------------------------------------------- /tools/psptools/psptool/prxtypes/type6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/prxtypes/type6.py -------------------------------------------------------------------------------- /tools/psptools/psptool/prxtypes/type8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/prxtypes/type8.py -------------------------------------------------------------------------------- /tools/psptools/psptool/prxtypes/type9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/prxtypes/type9.py -------------------------------------------------------------------------------- /tools/psptools/psptool/psar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/tools/psptools/psptool/psar.py -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/include/pspmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaveeFTW/Infinity/HEAD/utils/include/pspmacro.h --------------------------------------------------------------------------------