summaryrefslogtreecommitdiff
path: root/bootloader.asm
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2014-09-24 12:15:06 -0700
committeriximeow <me@iximeow.net>2014-09-24 12:15:06 -0700
commitc0ab4a627bca92268b9ecadc03298b8573b5d2ae (patch)
tree9f81e7f75e359b8140634a8e516c1f86b1311767 /bootloader.asm
Initial commit
Diffstat (limited to 'bootloader.asm')
-rw-r--r--bootloader.asm12
1 files changed, 12 insertions, 0 deletions
diff --git a/bootloader.asm b/bootloader.asm
new file mode 100644
index 0000000..181c1dc
--- /dev/null
+++ b/bootloader.asm
@@ -0,0 +1,12 @@
+
+ mov cx, 0x10
+ mov ah, 0x0A
+ mov al, 0x74
+ int 0x10
+
+hang:
+ jmp hang
+
+ times 510-($-$$) db 0
+ db 0x55
+ db 0xAA