mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 05:32:47 +00:00
- moved common.h from the ARM9 tree to the common code tree - does proper deinit now on the ARM11 side the bug that caused it to fail to launch some FIRMs has been fixed - it can even boot stock FIRMs
21 lines
437 B
C
Executable File
21 lines
437 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 SYS_CoreShutdown(void);
|