mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-10-13 13:15:07 -07:00
new OS
This commit is contained in:
8
disk/Makefile
Normal file
8
disk/Makefile
Normal 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
|
Reference in New Issue
Block a user