mirror of
https://github.com/ApacheThunder/r4bootstrap.git
synced 2025-06-19 11:45:34 -04:00
11 lines
378 B
C
11 lines
378 B
C
#ifndef _BOOT_H_
|
|
#define _BOOT_H_
|
|
|
|
#define resetMemory2_ARM9_size 0x400
|
|
void __attribute__ ((long_call)) __attribute__((naked)) __attribute__((noreturn)) resetMemory2_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_
|