commit cff8a137f42b36b7eabf66f5850be85d7fbb85f7 Author: nub31 Date: Fri Aug 22 19:45:58 2025 +0200 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..18f191d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +boot \ No newline at end of file diff --git a/boot.asm b/boot.asm new file mode 100644 index 0000000..8db7b08 --- /dev/null +++ b/boot.asm @@ -0,0 +1,6 @@ +org 0x7c00 + +halt: + jmp halt + +times 510-($-$$) db 0 diff --git a/makefile b/makefile new file mode 100644 index 0000000..9384f4c --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +boot: boot.asm + nasm boot.asm