Update boot1.asm

remove duplicate print
This commit is contained in:
2025-11-10 03:29:17 -08:00
committed by GitHub
parent 2609f52dd6
commit 1b046776e0

View File

@@ -123,17 +123,8 @@ e820_done:
jmp 0x08:protected_entry jmp 0x08:protected_entry
; ---------------------------------------------------------------- ; ----------------------------------------------------------------
[BITS 16] ; removed duplicate print from here
print_string_16: ; suggested calling it from boot.asm
.loop:
lodsb
or al, al
jz .done
mov ah, 0x0E
int 0x10
jmp .loop
.done:
ret
e820_error_msg db "E820 Failed!", 0 e820_error_msg db "E820 Failed!", 0
vesa_error_msg db "VESA Failed!", 0 vesa_error_msg db "VESA Failed!", 0