EttinOS/SOURCE/PRINTNL.INC
2021-06-06 21:53:15 +03:00

19 lines
200 B
Text

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