EttinOS/src/NEWLINE.INC

18 lines
213 B
Plaintext

;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