summaryrefslogtreecommitdiff
path: root/asm/kernel.asm
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-03-03 18:18:57 +0100
committerandromeda <andromeda@lenovo>2026-03-03 18:18:57 +0100
commitd879df630f68bb56f291ac285f951ca2ba6764e7 (patch)
treebaf7f8f71dfdef788e1cbc032268c58d1dd9e8b1 /asm/kernel.asm
parentab30c236003a8dafd148d821dbe559202446b0d7 (diff)
reorganise
Diffstat (limited to 'asm/kernel.asm')
-rw-r--r--asm/kernel.asm23
1 files changed, 23 insertions, 0 deletions
diff --git a/asm/kernel.asm b/asm/kernel.asm
new file mode 100644
index 0000000..23c0d5d
--- /dev/null
+++ b/asm/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