boot32: comment out unused print function

This commit is contained in:
E. C. Masloch 2024-01-19 22:00:06 +01:00 committed by Kenneth J Davis
parent 630735e14a
commit a189ceb650

View File

@ -306,6 +306,7 @@ c3:
adc dx, [data_start + 2] adc dx, [data_start + 2]
ret ret
%if 0
; prints text after call to this function. ; prints text after call to this function.
print_1char: print_1char:
@ -318,7 +319,8 @@ print1: lodsb ; get token
cmp al, 0 ; end of string? cmp al, 0 ; end of string?
jne print_1char ; until done jne print_1char ; until done
ret ; and jump to it ret ; and jump to it
%endif
;input: ;input:
; DX:AX - 32-bit DOS sector number ; DX:AX - 32-bit DOS sector number
; ES:BX - destination buffer ; ES:BX - destination buffer