Combined boot and kernel modules into one

This commit is contained in:
Kyle J Cardoza 2024-07-11 01:51:39 -04:00
parent 588ad3f1b2
commit 28d7e2d1f1
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ build/$(TARGET).bin: build/kernel.bin
#Create an empty .bin file. #Create an empty .bin file.
@dd if=/dev/zero of=$@ bs=1024 count=512 @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 @dd if=build/kernel.bin of=$@ conv=notrunc
.PHONY: clean .PHONY: clean