summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorCarlos Maiolino <[email protected]>2025-07-20 14:38:22 +0200
committerCarlos Maiolino <[email protected]>2025-07-20 14:41:57 +0200
commitc6882778696fe40b799887d35ec3f4b48792abaf (patch)
tree6d6dfd7f2316cbcc203c1c2c97be6ed9cbff6698 /src/include
parent49776b17697afb8f9b4f7c5689d16a44633aed48 (diff)
Add kernel.c
Create the kernel.c file and its initial start_kernel(), and jump to it from the ASM. Also setup the build system to actually build it Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/kernel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/kernel.h b/src/include/kernel.h
new file mode 100644
index 0000000..2007693
--- /dev/null
+++ b/src/include/kernel.h
@@ -0,0 +1,6 @@
+#ifndef KERNEL_H
+#define KERNEL_H
+
+void kernel_main();
+
+#endif /* KERNEL_H */