EttinOS/src/PRINTLN.INC

13 lines
149 B
Plaintext

;Prints a string from SI until a null, followed by a newline.
println:
;Print the string
mov ah, 0x0
int 0x21
;Print a newline
call newline
iret