EttinOS/source/println.inc

12 lines
140 B
PHP

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