mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 21:52:48 +00:00
- moved brightness control to the ARM11 - moved HID updating to the ARM11 - moved screen init from ARM9 to the ARM11, always performed unconditionally - removed unnecessary SCREENINIT and SET_BRIGHTNESS pxi commands and other stuff I probably forgot about
21 lines
463 B
C
Executable File
21 lines
463 B
C
Executable File
#pragma once
|
|
|
|
#include <types.h>
|
|
|
|
/*
|
|
how to run the SYS_Core(Zero){Init,Shutdown} functions:
|
|
for init:
|
|
- FIRST run CoreZeroInit ONCE
|
|
- all cores must run CoreInit ONCE
|
|
|
|
for shutdown:
|
|
- all non-zero cores must call CoreShutdown
|
|
- core zero must call CoreZeroShutdown, then CoreShutdown
|
|
*/
|
|
|
|
void SYS_CoreZeroInit(void);
|
|
void SYS_CoreInit(void);
|
|
|
|
void SYS_CoreZeroShutdown(void);
|
|
void __attribute__((noreturn)) SYS_CoreShutdown(void);
|