aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2019-11-09 19:13:55 +0100
committerMarvin Borner2019-11-09 19:13:55 +0100
commita30a9b21c3e0af7996a551381a8f41075bada7ad (patch)
treee20309a87c03c3d3473aaf181c4671b53dfd01d9 /Makefile
parent5f0475e159428e50e58f3772d6a759ff86b7b55a (diff)
Started own implementation of asm bootloader
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 426d650..6317d6b 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,9 @@ build: clean
# Create ISO
mkdir -p ./iso/boot/; \
mv ./build/melvix.bin ./iso/boot/kernel.bin; \
- nasm ./src/bootloader/loader.asm -f bin -o ./iso/boot/boot.bin || exit; \
+ nasm ./src/bootloader/stage1.asm -f bin -o ./build/stage1.bin || exit; \
+ nasm ./src/bootloader/stage2.asm -f bin -o ./build/stage2.bin || exit; \
+ cat ./build/stage1.bin ./build/stage2.bin > ./iso/boot/boot.bin; \
genisoimage -no-emul-boot -b boot/boot.bin -o ./build/melvix.iso ./iso; \
cross: