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