Defines | |
#define | CODE_IN_ITCM __attribute__ ((section (".itcm"), long_call)) |
#define | DATA_IN_DTCM __attribute__ ((section (".dtcm"))) |
#define | ulDebug(format...) ({ char __str[1000]; sprintf(__str , ##format); ulDebugText(__str); }) |
Functions | |
int | ulShowSplashScreen (int splashType) |
#define CODE_IN_ITCM __attribute__ ((section (".itcm"), long_call)) |
Puts code in internal ARM9 memory (32 kB) [untested]
#define DATA_IN_DTCM __attribute__ ((section (".dtcm"))) |
Puts data in internal ARM9 memory (16 kB) [untested]
#define ulDebug | ( | format... | ) | ({ char __str[1000]; sprintf(__str , ##format); ulDebugText(__str); }) |
Debug text with PALib
int ulShowSplashScreen | ( | int | splashType | ) | [inline] |
Shows a splash screen.
splashType |
|
ulInit(UL_INIT_ALL); ulInitGfx(); ulShowSplashScreen(1);