This commit is contained in:
2025-04-30 23:03:44 -07:00
parent a464e109cb
commit ecfa54e225
30 changed files with 584 additions and 1191 deletions

8
disk/Makefile Normal file
View File

@@ -0,0 +1,8 @@
IMG_SIZE = 1440k
BOOT_BIN = ../build/boot.bin
KERNEL_BIN = ../build/kernel.bin
DISK_IMG = ../build/disk.img
$(DISK_IMG): $(BOOT_BIN) $(KERNEL_BIN)
dd if=$(BOOT_BIN) of=$@ bs=512 seek=4
dd if=$(KERNEL_BIN) of=$@ bs=512 seek=200