summaryrefslogtreecommitdiff
path: root/kernel.asm
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-03-03 15:57:17 +0100
committerandromeda <andromeda@lenovo>2026-03-03 15:57:17 +0100
commit31c486acda6abf195a9a50709455e7f66a680324 (patch)
tree0c00f09d958e1a2d8c28f70cc07befc2324ebe58 /kernel.asm
parent8dee59b744bfa88bb4f946fa773a64ae7ac1e181 (diff)
actually jump to 'kernel'
Diffstat (limited to 'kernel.asm')
-rw-r--r--kernel.asm23
1 files changed, 23 insertions, 0 deletions
diff --git a/kernel.asm b/kernel.asm
new file mode 100644
index 0000000..23c0d5d
--- /dev/null
+++ b/kernel.asm
@@ -0,0 +1,23 @@
+[bits 32]
+
+mov al, 'K'
+out dx, al
+mov al, 'e'
+out dx, al
+mov al, 'r'
+out dx, al
+mov al, 'n'
+out dx, al
+mov al, 'e'
+out dx, al
+mov al, 'l'
+out dx, al
+mov al, 0x0D
+out dx, al
+mov al, 0x0A
+out dx, al
+mov al, 0x00
+out dx, al
+jmp $
+
+times 512-($-$$) db 0