mirror of
https://github.com/ApacheThunder/EZP_Bootstrap.git
synced 2025-06-18 19:25:31 -04:00

* Requires unlocked flash. (aka EZP cart has not had fw1.06 run on it yet). EZP flash can be unlocked with EZP_Recovery_Tool however requires desoldering WP# win on flash chip to do this.
11 lines
388 B
C
11 lines
388 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_
|