大家帮我看看这个程序对吗?我怎么连接不正确啊?
data segment
data1 db 0f8h,60h,0ach,74h,3bh
data2 db 0c1h,36h,9eh,0d5h,20h
data ends
code segment
assume cs:code,ds:data
start: mov ax,data
mov ds,ax
mov cx,5
mov si,0
clc
looper: mov al,data2[si]
adc data1[si],al
inc si
dec cx
jnz looper
hlt
code ends
end start