2012 Mar 10 02:19 PM MST | C3 Nintendo8 Nintendo-Wii8 Programming18 [2012]3

I have created a Wii eject channel in the past. Today, I decided to uninstall my devKitPro SDK and release my notes on some important C functions.

// Eject Disc
DI_Eject()
// Return to System Menu
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
// Power Red
STM_ShutdownToStandby()
SYS_ResetSystem(SYS_POWEROFF_STANDBY, 0, 0);
// Reboot
STM_RebootSystem()
SYS_ResetSystem(RESTART, 0, 0);
// Power Yellow
STM_ShutdownToIdle()
SYS_ResetSystem(SYS_POWEROFF_IDLE, 0, 0);
// Power Auto Off
SYS_ResetSystem(SYS_POWEROFF, 0, 0);