22 lines
390 B
C
Executable File
22 lines
390 B
C
Executable File
|
|
typedef struct console {
|
|
u8 attrib;
|
|
s16 cursX;
|
|
s16 cursY;
|
|
u8 ansi;
|
|
u8 param1;
|
|
u8 param2;
|
|
u8 param3;
|
|
u8 page;
|
|
} console __attribute__ ((packed));
|
|
|
|
|
|
void showhex(u8 src);
|
|
void putchar(u8 thechar);
|
|
u32 print(u8* string);
|
|
u32 printf (const u8 *string, ...);
|
|
void changevc(u8 vc);
|
|
u8* itoa(u32 num, u8* str, u8 base, u32 dim, u8 achar);
|
|
u8* sitoa(int num, u8* str, u32 dim);
|
|
|