summaryrefslogtreecommitdiff
path: root/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 /kernel.asm
parentab30c236003a8dafd148d821dbe559202446b0d7 (diff)
reorganise
Diffstat (limited to 'kernel.asm')
-rw-r--r--kernel.asm23
1 files changed, 0 insertions, 23 deletions
diff --git a/kernel.asm b/kernel.asm
deleted file mode 100644
index 23c0d5d..0000000
--- a/kernel.asm
+++ /dev/null
@@ -1,23 +0,0 @@
-[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