You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
244 B
13 lines
244 B
15 years ago
|
%{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();
|
||
|
|
||
|
|