EttinOS/source/println.inc

12 lines
143 B
PHP

;Prints a string from si until a null, followed by a newline.
println:
;Print the string
call printstr
;Print a newline
call printcrlf
ret