├── Include ├── nmfmanager.h ├── nmprunner.h ├── renga-defs.h ├── renga-funcs.h ├── renga_user-funcs.h └── types.h ├── Kernel ├── CMakeLists.txt ├── logging.h ├── main.c ├── psp2renga.yml └── user.h ├── LICENSE.txt ├── Misc ├── NMFManager │ └── Payloads │ │ ├── acmdh_hook │ │ ├── Makefile │ │ └── main.c │ │ ├── cp_payload │ │ ├── Makefile │ │ └── main.c │ │ ├── framework │ │ ├── Makefile │ │ └── main.c │ │ ├── manager │ │ ├── Makefile │ │ └── main.c │ │ └── swap_bank │ │ ├── Makefile │ │ └── main.c ├── NMPRunner │ ├── Payloads │ │ ├── stage2_60 │ │ │ ├── Makefile │ │ │ └── main.c │ │ └── stage2_71 │ │ │ ├── Makefile │ │ │ └── main.c │ └── Samples │ │ ├── IncludeMemcpySample │ │ ├── CMakeLists.txt │ │ ├── logging.h │ │ ├── main.c │ │ └── memcpy_sample.yml │ │ ├── IncludeSecureDumpSample │ │ ├── CMakeLists.txt │ │ ├── logging.h │ │ ├── main.c │ │ └── secure_dump_sample.yml │ │ └── PayloadBigmacSample │ │ ├── Makefile │ │ ├── main.c │ │ └── types.h └── Renga │ ├── Payloads │ └── mepcpy │ │ ├── Makefile │ │ └── main.c │ └── Samples │ ├── PayloadGetCurrentCfgPaddr │ ├── Makefile │ └── main.c │ └── UserDecryptedSmLoad-dsll_mdr72 │ ├── CMakeLists.txt │ ├── debugScreen.h │ ├── debugScreenFont.c │ └── main.c ├── README.md └── User ├── app ├── CMakeLists.txt ├── debugScreen.h ├── debugScreenFont.c ├── lv0_loader.vpk └── main.c └── plugin ├── _forcephy ├── CMakeLists.txt ├── rengaUserFphy.c └── rengaUserFphy.yml ├── _forcesram ├── CMakeLists.txt ├── rengaUserFsram.c └── rengaUserFsram.yml └── _settings ├── CMakeLists.txt ├── console_info.xml ├── rengaUser.c └── rengaUser.yml /Include/nmfmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Include/nmfmanager.h -------------------------------------------------------------------------------- /Include/nmprunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Include/nmprunner.h -------------------------------------------------------------------------------- /Include/renga-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Include/renga-defs.h -------------------------------------------------------------------------------- /Include/renga-funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Include/renga-funcs.h -------------------------------------------------------------------------------- /Include/renga_user-funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Include/renga_user-funcs.h -------------------------------------------------------------------------------- /Include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Include/types.h -------------------------------------------------------------------------------- /Kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Kernel/CMakeLists.txt -------------------------------------------------------------------------------- /Kernel/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Kernel/logging.h -------------------------------------------------------------------------------- /Kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Kernel/main.c -------------------------------------------------------------------------------- /Kernel/psp2renga.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Kernel/psp2renga.yml -------------------------------------------------------------------------------- /Kernel/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Kernel/user.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/acmdh_hook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/acmdh_hook/Makefile -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/acmdh_hook/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/acmdh_hook/main.c -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/cp_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/cp_payload/Makefile -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/cp_payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/cp_payload/main.c -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/framework/Makefile -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/framework/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/framework/main.c -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/manager/Makefile -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/manager/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/manager/main.c -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/swap_bank/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/swap_bank/Makefile -------------------------------------------------------------------------------- /Misc/NMFManager/Payloads/swap_bank/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMFManager/Payloads/swap_bank/main.c -------------------------------------------------------------------------------- /Misc/NMPRunner/Payloads/stage2_60/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Payloads/stage2_60/Makefile -------------------------------------------------------------------------------- /Misc/NMPRunner/Payloads/stage2_60/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Payloads/stage2_60/main.c -------------------------------------------------------------------------------- /Misc/NMPRunner/Payloads/stage2_71/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Payloads/stage2_71/Makefile -------------------------------------------------------------------------------- /Misc/NMPRunner/Payloads/stage2_71/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Payloads/stage2_71/main.c -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeMemcpySample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeMemcpySample/CMakeLists.txt -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeMemcpySample/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeMemcpySample/logging.h -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeMemcpySample/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeMemcpySample/main.c -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeMemcpySample/memcpy_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeMemcpySample/memcpy_sample.yml -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeSecureDumpSample/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeSecureDumpSample/CMakeLists.txt -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeSecureDumpSample/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeSecureDumpSample/logging.h -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeSecureDumpSample/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeSecureDumpSample/main.c -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/IncludeSecureDumpSample/secure_dump_sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/IncludeSecureDumpSample/secure_dump_sample.yml -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/PayloadBigmacSample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/PayloadBigmacSample/Makefile -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/PayloadBigmacSample/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/PayloadBigmacSample/main.c -------------------------------------------------------------------------------- /Misc/NMPRunner/Samples/PayloadBigmacSample/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/NMPRunner/Samples/PayloadBigmacSample/types.h -------------------------------------------------------------------------------- /Misc/Renga/Payloads/mepcpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Payloads/mepcpy/Makefile -------------------------------------------------------------------------------- /Misc/Renga/Payloads/mepcpy/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Payloads/mepcpy/main.c -------------------------------------------------------------------------------- /Misc/Renga/Samples/PayloadGetCurrentCfgPaddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Samples/PayloadGetCurrentCfgPaddr/Makefile -------------------------------------------------------------------------------- /Misc/Renga/Samples/PayloadGetCurrentCfgPaddr/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Samples/PayloadGetCurrentCfgPaddr/main.c -------------------------------------------------------------------------------- /Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/CMakeLists.txt -------------------------------------------------------------------------------- /Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/debugScreen.h -------------------------------------------------------------------------------- /Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/debugScreenFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/debugScreenFont.c -------------------------------------------------------------------------------- /Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/Misc/Renga/Samples/UserDecryptedSmLoad-dsll_mdr72/main.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/README.md -------------------------------------------------------------------------------- /User/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/app/CMakeLists.txt -------------------------------------------------------------------------------- /User/app/debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/app/debugScreen.h -------------------------------------------------------------------------------- /User/app/debugScreenFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/app/debugScreenFont.c -------------------------------------------------------------------------------- /User/app/lv0_loader.vpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/app/lv0_loader.vpk -------------------------------------------------------------------------------- /User/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/app/main.c -------------------------------------------------------------------------------- /User/plugin/_forcephy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_forcephy/CMakeLists.txt -------------------------------------------------------------------------------- /User/plugin/_forcephy/rengaUserFphy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_forcephy/rengaUserFphy.c -------------------------------------------------------------------------------- /User/plugin/_forcephy/rengaUserFphy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_forcephy/rengaUserFphy.yml -------------------------------------------------------------------------------- /User/plugin/_forcesram/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_forcesram/CMakeLists.txt -------------------------------------------------------------------------------- /User/plugin/_forcesram/rengaUserFsram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_forcesram/rengaUserFsram.c -------------------------------------------------------------------------------- /User/plugin/_forcesram/rengaUserFsram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_forcesram/rengaUserFsram.yml -------------------------------------------------------------------------------- /User/plugin/_settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_settings/CMakeLists.txt -------------------------------------------------------------------------------- /User/plugin/_settings/console_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_settings/console_info.xml -------------------------------------------------------------------------------- /User/plugin/_settings/rengaUser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_settings/rengaUser.c -------------------------------------------------------------------------------- /User/plugin/_settings/rengaUser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/psp2renga/HEAD/User/plugin/_settings/rengaUser.yml --------------------------------------------------------------------------------