Skip to content

Instantly share code, notes, and snippets.

View mkwcat's full-sized avatar

Larissa mkwcat

View GitHub Profile
@mkwcat
mkwcat / 4count_en.c
Created January 7, 2026 00:42
Enable holding the power for 4 seconds to turn off the console in the Wii U's Wii mode.
#include <stdlib.h>
#include <ogc/exi.h>
bool RTCRead(u32 offset, u32* value)
{
if (EXI_Lock(EXI_CHANNEL_0, EXI_DEVICE_1, NULL) == 0)
return false;
if (EXI_Select(EXI_CHANNEL_0, EXI_DEVICE_1, EXI_SPEED8MHZ) == 0)
{
EXI_Unlock(EXI_CHANNEL_0);