feat: ajouts des structures et déclarations permettant l'usage de consoles
This commit is contained in:
parent
d49a12442f
commit
e5bb6b413f
|
@ -1,4 +1,19 @@
|
||||||
|
|
||||||
|
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 showhex(u8 src);
|
||||||
void putchar(u8 thechar);
|
void putchar(u8 thechar);
|
||||||
void print(u8* string);
|
void print(u8* string);
|
||||||
|
void printf (const u8 *string, ...);
|
||||||
|
void changevc(u8 vc);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue