From cff8a137f42b36b7eabf66f5850be85d7fbb85f7 Mon Sep 17 00:00:00 2001 From: nub31 Date: Fri, 22 Aug 2025 19:45:58 +0200 Subject: [PATCH] init --- .gitignore | 1 + boot.asm | 6 ++++++ makefile | 2 ++ 3 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 boot.asm create mode 100644 makefile 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