This commit is contained in:
nub31
2025-08-22 19:45:58 +02:00
commit cff8a137f4
3 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
boot

6
boot.asm Normal file
View File

@@ -0,0 +1,6 @@
org 0x7c00
halt:
jmp halt
times 510-($-$$) db 0

2
makefile Normal file
View File

@@ -0,0 +1,2 @@
boot: boot.asm
nasm boot.asm