summaryrefslogtreecommitdiff
path: root/kernel.asm
diff options
context:
space:
mode:
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