├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── Overlay ├── .vscode │ ├── c_cpp_properties.json │ └── settings.json ├── Makefile ├── include │ ├── SaltyNX.h │ └── ipc.h └── source │ └── main.cpp ├── README.md └── _config.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: masagrator 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Makefile -------------------------------------------------------------------------------- /Overlay/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Overlay/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Overlay/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Overlay/.vscode/settings.json -------------------------------------------------------------------------------- /Overlay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Overlay/Makefile -------------------------------------------------------------------------------- /Overlay/include/SaltyNX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Overlay/include/SaltyNX.h -------------------------------------------------------------------------------- /Overlay/include/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Overlay/include/ipc.h -------------------------------------------------------------------------------- /Overlay/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/Overlay/source/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masagrator/ReverseNX-RT/HEAD/_config.yml --------------------------------------------------------------------------------