EttinOS/src/NEWLINE.INC

19 lines
220 B
Plaintext

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