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