From 19472fbbecb004616c9073f09d0ee94b5f8e26ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Wed, 30 Jun 2021 20:41:37 +0300 Subject: [PATCH] Use 8.3 for source file names --- Makefile | 4 ++-- bootsector.asm => bootsect.asm | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename bootsector.asm => bootsect.asm (100%) diff --git a/Makefile b/Makefile index b658092..fed4dfc 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ all: nor86.img -nor86.img: bootsector.bin kernel.bin CC0 README.md +nor86.img: bootsect.bin kernel.bin CC0 README.md rm -f $@ mkdosfs -C $@ 1440 - rw -i bootsector.bin -o $@ + rw -i bootsect.bin -o $@ mcopy -i $@ CC0 :: mcopy -i $@ README.md :: mcopy -i $@ kernel.bin :: diff --git a/bootsector.asm b/bootsect.asm similarity index 100% rename from bootsector.asm rename to bootsect.asm