diff --git a/system/system.c b/system/system.c index 3269251..60e746b 100644 --- a/system/system.c +++ b/system/system.c @@ -1,9 +1,18 @@ #include "vga.h" +#include "video.h" -int main(void) { - setvmode(0x1); - clearscreen(); - setfont(1); - print("Hello cos is here"); - while(1); -} \ No newline at end of file +int _main(void) { + setvmode(0x84); + cls(); + int x,y; + for(x=0;x<120;x++) + for(y=0;y<120;y++) + { + writepxl(x,y,4); + } + for(x=0;x<20000;x++) + { + print("C'est 2 test 0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 c un test!"); + } + while(1); +}