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

2
.gitignore vendored
View File

@@ -1 +1 @@
boot
boot.bin

View File

@@ -4,3 +4,4 @@ halt:
jmp halt
times 510-($-$$) db 0
db 0x55, 0xaa

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