blob: c84f48bb5c6eadc673712eb50bcadf529774253e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
%{H_TEMPLATE}
// gba.h has all the register definitions
#include "gba.h"
extern u16 font_Tiles[]; // the letters as 8x8 tiles
extern u16 Master_Palette[]; // the color palette
void print(char* text,u16 x,u16 y);
void initTextMode();
|