i want to know the explanation how , 10, 13, makes the string in new line and what does the 10 and 13 mean and why are they separated in " , " comma
this is my code
.model small
.stack 100h
.data
dog db "Hellowww" , 10, 13, "Earth, $"
cat db "im valen the alien $"
.code
start:
mov ax, @data
mov ds, ax
mov ah, 09h
mov dx, offset dog
int 21h
mov dx, offset cat
int 21h
mov ah, 4ch
int 21h
end start
the result is
Hellowww
Earth, im valen the alien