;Prints a newline printcrlf: ;Store the initial registers in the stack pusha ;Print the newline mov si, .crlf call printstr ;Load the initial registers from the stack popa ret .crlf: db 0xd, 0xa, 0x0