newbie here, just started learning about assembly language and i couldn't print a new line for some reason idk what i did wrong, i also tried trying some of the answers i found in here but still not working, okay well here's the code
.model small
.stack 0100h
.data
a db "name $"
b db "year $"
c db "school name $"
d db "phone number $"
.code
mov ax, @data
mov ds, ax
mov ah, 09h
mov dx, offset a
int 21h
mov dl, 0ah
int 21h
mov dl, 0dh
int 21h
mov dx, offset b
int 21h
mov dl, 0ah
int 21h
mov dl, 0dh
int 21h
mov dx, offset c
int 21h
mov dl, 0ah
int 21h
mov dl, 0dh
int 21h
mov dx, offset d
int 21h
mov ax, 4c00h
int 21h
end