summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarlos Maiolino <[email protected]>2025-07-25 08:28:53 +0200
committerCarlos Maiolino <[email protected]>2025-07-25 08:28:53 +0200
commit02a4f7fa2100809d84b93dbe8d6c828e4768ad41 (patch)
tree2170a5a5a390ce9fdd519473192991da41d23e5a /src
parented16669fb8629fde0593bd4b8dc266a697af6245 (diff)
Build vga and string libs
Also add a small test to the kernel code Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/kernel.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/kernel.c b/src/kernel.c
index d39aac5..bca7849 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -1,6 +1,11 @@
#include <kernel.h>
+#include <stdint.h>
+#include <stddef.h>
+#include <vga.h>
+#include "lib/string.h"
void start_kernel()
-
{
+ init_display(2);
+ vprintl("Hello World!!!\n");
}