mirror of
https://github.com/ApacheThunder/omega-kernel-boot-to-nor.git
synced 2025-06-18 19:25:32 -04:00
10 lines
408 B
C
10 lines
408 B
C
#include <gba_base.h>
|
|
|
|
|
|
|
|
void Clear(u16 x, u16 y, u16 w, u16 h, u16 c, u8 isDrawDirect);
|
|
void ClearWithBG(u16* pbg,u16 x, u16 y, u16 w, u16 h, u8 isDrawDirect);
|
|
void DrawPic(u16 *GFX, u16 x, u16 y, u16 w, u16 h, u8 isTrans, u16 tcolor, u8 isDrawDirect);
|
|
void DrawHZText12(char *str, u16 len, u16 x, u16 y, u16 c, u8 isDrawDirect);
|
|
void DEBUG_printf(const char *format, ...);
|
|
void ShowbootProgress(char *str); |