Here is the simple program for addition when running in tasm it gives some garbage value and I cannot figure out what is the error hi Please any help will be apperetated Thank you
.model small
.data
opr1 dw 1234h
opr2 dw 0100h
result dw 001 dup(?),'$'
.code
mov ax,@data
mov ds,ax
mov ax,opr1
mov bx,opr2
add ax,bx
mov di,offset result
mov [di], ax
mov ah,09h
mov dx,offset result
int 21h
mov ah,4ch
int 21h
end