;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