问题描述
我尝试运行emu8086并尝试通过数组2、4、6、8、10、12求和后获得输出42,但是它显示“ q”,即时消息使用循环求和数组
.model small
.stack 100
.data
byteList db 2,4,6,8,10,12
sum db ?
.code
main proc
mov ax,@data
mov ds,ax
mov cx,6
mov si,0
L1:
add al,byteList[si]
inc si
loop l1
mov sum,al
mov ah,02h
mov dl,sum
add dl,48
int 21h
end: mov ax,4c00h
int 21h
main endp
end main
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)