Add: semi-working printf implementation

This commit is contained in:
xamidev
2024-05-26 15:43:30 +02:00
parent 61dec7fe14
commit bb775dfa5b
9 changed files with 250 additions and 2 deletions

View File

@@ -8,7 +8,6 @@ int kmain(int retvalue)
log("Kernel started", 2);
clear();
puts("hello\nbrave\nnew\nworld");
printf("Formatted: %% %c %s %d\n", 'f', "Hello", 77);
return retvalue;
}