1
0
Fork 0
EttinOS/src/PRINTLN.INC

13 lines
159 B
Plaintext

;Print a string ending in a null from SI followed by a CRLF.
println:
;Print the string
mov ah, 0x0
int 0x21
;Print a CRLF
call printcrlf
iret