EttinOS/source/readln.inc

12 lines
160 B
PHP
Raw Normal View History

;Reads a string of at most al characters to di until a return and prints a newline.
readln:
2021-06-04 17:36:46 +00:00
;Read the string
call readstr
;Print a newline
call newline
ret