mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-06-18 10:55:31 -04:00
13 lines
528 B
C
13 lines
528 B
C
#ifndef _BOOT_H_
|
|
#define _BOOT_H_
|
|
|
|
#define resetMemory2_ARM9_size 0x400
|
|
void __attribute__ ((long_call)) __attribute__((naked)) __attribute__((noreturn)) resetMemory2_ARM9();
|
|
#define clearMasterBright_ARM9_size 0x200
|
|
void __attribute__ ((long_call)) __attribute__((naked)) __attribute__((noreturn)) clearMasterBright_ARM9();
|
|
#define startBinary_ARM9_size 0x100
|
|
void __attribute__ ((long_call)) __attribute__((noreturn)) __attribute__((naked)) startBinary_ARM9 ();
|
|
#define ARM9_START_FLAG (*(vu8*)0x02FFFDFB)
|
|
|
|
#endif // _BOOT_H_
|