From c6882778696fe40b799887d35ec3f4b48792abaf Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Sun, 20 Jul 2025 14:38:22 +0200 Subject: 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 --- src/include/kernel.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/include/kernel.h (limited to 'src/include') 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 */ -- cgit v1.2.3