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