From d8392002629bc97c05ca82961c7ab3439ed7248e Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Thu, 17 Jul 2025 19:20:28 +0200 Subject: Start writing the kernel and add a linker script Move the code unders [BITS 32] label to its own file to be loaded as a kernel by the boot loader. Add a linker script to link the bootloader and the kernel in a single binary file. Add a build script to make it easier to use the cross compiler Update the Makefile to build everything and pack it into the os.bin Signed-off-by: Carlos Maiolino --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index a8a0dce..f6cf5af 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.bin +build/cemOS.o build/kernel.asm.o -- cgit v1.2.3