tma: Implement example set:sys getter service

This commit is contained in:
Michael Scire
2018-12-05 13:18:31 -08:00
parent 24be9ffc57
commit 61ad4e0991
10 changed files with 184 additions and 4 deletions

View File

@@ -65,11 +65,17 @@ void __appInit(void) {
fatalSimple(rc);
}
rc = setsysInitialize();
if (R_FAILED(rc)) {
fatalSimple(rc);
}
CheckAtmosphereVersion(CURRENT_ATMOSPHERE_VERSION);
}
void __appExit(void) {
/* Cleanup services. */
setsysExit();
pscExit();
smExit();
}