mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 13:42:47 +00:00
16 lines
270 B
C
16 lines
270 B
C
#include "godmode.h"
|
|
#include "power.h"
|
|
#include "pxi.h"
|
|
|
|
void main(int argc, char** argv)
|
|
{
|
|
(void) argv; // unused for now
|
|
|
|
// Screen on
|
|
ScreenOn();
|
|
|
|
// Run the main program
|
|
if (GodMode(argc) == GODMODE_EXIT_REBOOT) Reboot();
|
|
else PowerOff();
|
|
}
|