aboutsummaryrefslogtreecommitdiffstats
path: root/src/boot.stage1.print.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot.stage1.print.asm')
-rw-r--r--src/boot.stage1.print.asm21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/boot.stage1.print.asm b/src/boot.stage1.print.asm
deleted file mode 100644
index 106a4df..0000000
--- a/src/boot.stage1.print.asm
+++ /dev/null
@@ -1,21 +0,0 @@
- ;; boot.stage1.print.asm
-
- [bits 16]
-_print_string:
- pusha
- mov ah, 0x0e
-
-_print_string_loop:
- cmp byte [bx], 0
- je print_string_return
-
- mov al, [bx]
- int 0x10
-
- inc bx
- jmp print_string_loop
-
-_print_string_return:
- popa
- ret
- align 4