From 5b775fc55cf19fe949970d2bde91b06d8868cbbc Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Tue, 2 May 2023 08:52:15 +0200 Subject: [PATCH] Renamed stage_1 to bootsector to indicate BIOS-functionality better --- {stage_1 => bootsector}/build.sh | 0 {stage_1 => bootsector}/fat32.asm | 0 {stage_1 => bootsector}/partition_table.asm | 0 {stage_1 => bootsector}/start.asm | 0 {stage_1 => bootsector}/utility.asm | 0 build.sh | 4 ++-- 6 files changed, 2 insertions(+), 2 deletions(-) rename {stage_1 => bootsector}/build.sh (100%) rename {stage_1 => bootsector}/fat32.asm (100%) rename {stage_1 => bootsector}/partition_table.asm (100%) rename {stage_1 => bootsector}/start.asm (100%) rename {stage_1 => bootsector}/utility.asm (100%) diff --git a/stage_1/build.sh b/bootsector/build.sh similarity index 100% rename from stage_1/build.sh rename to bootsector/build.sh diff --git a/stage_1/fat32.asm b/bootsector/fat32.asm similarity index 100% rename from stage_1/fat32.asm rename to bootsector/fat32.asm diff --git a/stage_1/partition_table.asm b/bootsector/partition_table.asm similarity index 100% rename from stage_1/partition_table.asm rename to bootsector/partition_table.asm diff --git a/stage_1/start.asm b/bootsector/start.asm similarity index 100% rename from stage_1/start.asm rename to bootsector/start.asm diff --git a/stage_1/utility.asm b/bootsector/utility.asm similarity index 100% rename from stage_1/utility.asm rename to bootsector/utility.asm diff --git a/build.sh b/build.sh index c57ada6..89e6f12 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/env bash -cd stage_1 +cd bootsector ./build.sh cd ../ @@ -8,5 +8,5 @@ cd stage_2 ./build.sh cd ../ -cat stage_1/stage_1.bin > nightloader.bin +cat bootsector/stage_1.bin > nightloader.bin # cat stage_2/stage_2.bin >> nightloader.bin