I tried making an assembly code that prints out the first 10 numbers in the fibonacci sequence but instead I get some random characters like smiley faces. It's the first time I do this if somebody can help me with this thank you!
.model small
.data
n dw 10
.code
mov ax, @data
mov ds, ax
mov ax, 1
mov bx, 0
mov cx, n
urm:
mov ah, 2
mov dx, ax
int 21h
mov si, ax
add ax, bx
mov bx, si
dec cx
loop urm
mov ah, 4ch
int 21h
end