This commit is contained in:
nub31
2025-08-22 20:45:23 +02:00
parent acf2258d83
commit 238345c2a7
3 changed files with 40 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
boot.bin: boot.asm
nasm -o boot.bin boot.asm
boot/boot.bin: boot/boot.asm
nasm -o boot/boot.bin boot/boot.asm
run: boot.bin
qemu-system-x86_64 boot.bin
run: boot/boot.bin
qemu-system-x86_64 -drive file=boot/boot.bin,format=raw,index=0,media=disk
clean:
rm boot.bin
rm boot/boot.bin