aboutsummaryrefslogtreecommitdiffstats
path: root/src/boot/boot.stage1.print.asm
diff options
context:
space:
mode:
authorkotorifan <kotorifan05@gmail.com>2026-01-31 17:13:17 +0100
committerkotorifan <kotorifan05@gmail.com>2026-02-04 09:01:10 +0100
commit35f3e16135b371e11d540a8b6bd5395cb40b2c96 (patch)
tree60b8a3361b71bfd47f32d402ceeba5be351f8336 /src/boot/boot.stage1.print.asm
parente5c28a46a731a79d02266aa690a90a8f809d0f70 (diff)
downloadkotori-os-35f3e16135b371e11d540a8b6bd5395cb40b2c96.tar.gz
Whatever...
Diffstat (limited to 'src/boot/boot.stage1.print.asm')
-rw-r--r--src/boot/boot.stage1.print.asm21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/boot/boot.stage1.print.asm b/src/boot/boot.stage1.print.asm
deleted file mode 100644
index aff2e0d..0000000
--- a/src/boot/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