diff --git a/lib/video.c b/lib/video.c new file mode 100644 index 0000000..54fd7e9 --- /dev/null +++ b/lib/video.c @@ -0,0 +1,29 @@ +#include "vga.h" +#include "video.h" + +/*******************************************************************************/ + +/* affiche une chaine de caractère a l'écran */ + +void print(u8* string) +{ + u8 *source; + source = string; + while(*source!=0x00) + { + showchar(*source++); + } +} + +/*******************************************************************************/ + +/* affiche un octet sous forme hexadécimale a l'ecran */ + +void showhex(u8 src) +{ + static u8 hexadigit[16] = "0123456789ABCDEF"; + showchar(hexadigit[(src&0xF0)>>4]); + showchar(hexadigit[src&0x0F]); +} + +/*******************************************************************************/