Initial commit. We have a booting kernel

This commit is contained in:
Bananymous
2022-11-12 21:04:47 +02:00
commit e6b4866ab0
36 changed files with 691 additions and 0 deletions

9
kernel/kernel/kernel.c Normal file
View File

@@ -0,0 +1,9 @@
#include <kernel/tty.h>
#include <stdio.h>
void kernel_main()
{
terminal_initialize();
printf("Hello from the kernel!\n");
}