What's going on here? I'm just a beginner, how to solve it? Hope the experts can give instructions! The source code is as follows, a very simple one
data segment
x db 1
data ends
code segment
assume cs:code,ds:data
start:mov ax,data
mov ds,ax
mov dl,x
add dl,30h
mov ah,2h
int 21h
mov ah,4ch
int 21h
code ends
end start
data segment
x db 1
data ends
code segment
assume cs:code,ds:data
start:mov ax,data
mov ds,ax
mov dl,x
add dl,30h
mov ah,2h
int 21h
mov ah,4ch
int 21h
code ends
end start
