EttinOS/src/READLN.INC

13 lines
169 B
Plaintext

;Reads a string of at most AL characters to DI until a return and prints a newline.
readln:
;Read the string
mov ah, 0x1
int 0x21
;Print a newline
call newline
iret