This commit is contained in:
nub31
2025-08-22 19:50:06 +02:00
parent cff8a137f4
commit acf2258d83
3 changed files with 10 additions and 3 deletions

View File

@@ -1,2 +1,8 @@
boot: boot.asm
nasm boot.asm
boot.bin: boot.asm
nasm -o boot.bin boot.asm
run: boot.bin
qemu-system-x86_64 boot.bin
clean:
rm boot.bin