From 3fccae0b03a5cd6a24be04200cbb9e15874734ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Mon, 2 Apr 2007 12:56:57 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20ajout=20de=20d=C3=A9claration=20nouvell?= =?UTF-8?q?es=20fonctions=20graphiques?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/vga.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/include/vga.h b/include/vga.h index 38bfae4..46e5e89 100644 --- a/include/vga.h +++ b/include/vga.h @@ -5,6 +5,12 @@ typedef u8 mode_def[64]; -void print (u8* string); -void cls (void); -u16 setvmode(u8); +void print (char* string); +void clearscreen (void); +u16 setvmode(u8); +void showchar (u8 thechar); +void showhex (u8 src); +void fillscreen (u8 color); +u8 getfont(u8 num); +void setfont(u8 num); +void gotoscreen(u16 x,u16 y); \ No newline at end of file