Rename vbr to fat12vbr

This commit is contained in:
Nero 2019-03-30 12:39:53 +00:00
parent 97fe07a210
commit 9aa032a90c
2 changed files with 3 additions and 3 deletions

View File

@ -3,12 +3,12 @@ default: kernel.com
boot.bin: kernel/*.asm
nasm -s -o $@ -I kernel kernel/main.asm
vbr.bin: boot/vbr.asm
%.bin: boot/%.asm
nasm -s -o $@ -I lib $<
fdimage.img: vbr.bin boot.bin
fdimage.img: fat12vbr.bin boot.bin
dd if=/dev/zero bs=512 count=720 of=$@
mformat -i $@ -f 360 -B vbr.bin ::
mformat -i $@ -f 360 -B fat12vbr.bin ::
mcopy -i fdimage.img boot.bin ::boot.bin
clean: