├── .gcc-flags.json ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md └── src ├── ak2itool.cpp ├── delay.h └── platform.cpp /.gcc-flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitlith/powersaves_ntrboot/HEAD/.gcc-flags.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *~ 3 | *.gch 4 | ak2itool 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitlith/powersaves_ntrboot/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitlith/powersaves_ntrboot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitlith/powersaves_ntrboot/HEAD/README.md -------------------------------------------------------------------------------- /src/ak2itool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitlith/powersaves_ntrboot/HEAD/src/ak2itool.cpp -------------------------------------------------------------------------------- /src/delay.h: -------------------------------------------------------------------------------- 1 | // TODO 2 | #define ioDelay(...) while(0) 3 | -------------------------------------------------------------------------------- /src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kitlith/powersaves_ntrboot/HEAD/src/platform.cpp --------------------------------------------------------------------------------