summaryrefslogtreecommitdiff
path: root/src/kernel.c
diff options
context:
space:
mode:
authorCarlos Maiolino <[email protected]>2025-07-26 15:27:23 +0200
committerCarlos Maiolino <[email protected]>2025-07-26 15:27:23 +0200
commitfd9f4bd7724b4440bede4ccbb3670e88289402d9 (patch)
treedc9921957e3afeffbafdaf8cf6ea88d6ce446389 /src/kernel.c
parent02a4f7fa2100809d84b93dbe8d6c828e4768ad41 (diff)
Move include files to a subdirectory
Move the include files to the toxic/ subdirectory, so it gets a bit more organized. Ah, yeah, OS name will be renamed to ToxicOS Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'src/kernel.c')
-rw-r--r--src/kernel.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/kernel.c b/src/kernel.c
index bca7849..0aa8eef 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -1,11 +1,12 @@
-#include <kernel.h>
#include <stdint.h>
#include <stddef.h>
-#include <vga.h>
-#include "lib/string.h"
+#include <toxic/vga.h>
+#include <toxic/string.h>
+#include <toxic/kernel.h>
void start_kernel()
{
init_display(2);
vprintl("Hello World!!!\n");
+
}