ntr-hb-menu/ndsbootloader/source/boot.h
ApacheThunder fcec9c72d0 Add UI changes...
* Added background graphics for bottom screen console
* Used new font for bottom screen. A stripped down version of the
misaki-gothic used by GodMode9i ->
https://github.com/DS-Homebrew/GodMode9i/tree/master/resources/fonts

* Renamed folders for bootloader and exception stub as I am not setup to
deal with sub-modules at the moment.
2024-03-13 20:25:31 -05:00

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_