Kernel is now in C++ :)

This commit is contained in:
2022-11-12 21:30:26 +02:00
parent e6b4866ab0
commit 61609db228
7 changed files with 19 additions and 4 deletions

10
kernel/kernel/kernel.cpp Normal file
View File

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