Create repository

This commit is contained in:
Loic Guegan 2021-04-04 11:19:55 +02:00
commit 2a99c6259d
11 changed files with 191 additions and 0 deletions

7
src/utils/print.c Normal file
View file

@ -0,0 +1,7 @@
#include "print.h"
void putchar(char c){
char *video=(char *)0xB8000;
video[0]=c;
}