summaryrefslogtreecommitdiff
path: root/asm/kernel.asm
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-03-06 16:53:18 +0100
committerandromeda <andromeda@lenovo>2026-03-06 16:53:18 +0100
commitd35463e1959cb64828c3166527b06e4a79cbea5e (patch)
tree65017b84447f63eaaac8326c6d18f5c5e34e6bac /asm/kernel.asm
parentfdf5bb9daf8574b7f993e2e38e400c35aedc3b96 (diff)
reorganise
Diffstat (limited to 'asm/kernel.asm')
-rw-r--r--asm/kernel.asm23
1 files changed, 0 insertions, 23 deletions
diff --git a/asm/kernel.asm b/asm/kernel.asm
deleted file mode 100644
index b4cbb30..0000000
--- a/asm/kernel.asm
+++ /dev/null
@@ -1,23 +0,0 @@
-[bits 64]
-
-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
-.done
- hlt
- jmp .done