From 28d7e2d1f1dac150ebce14da1a3a259255525e1b Mon Sep 17 00:00:00 2001 From: Kyle J Cardoza Date: Thu, 11 Jul 2024 01:51:39 -0400 Subject: [PATCH] Combined boot and kernel modules into one --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91de722..117f3f5 100755 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ build/$(TARGET).bin: build/kernel.bin #Create an empty .bin file. @dd if=/dev/zero of=$@ bs=1024 count=512 -# Add the bios module at offset 0x000000 +# Add the kernel module at offset 0x000000 @dd if=build/kernel.bin of=$@ conv=notrunc .PHONY: clean