自己编的9*9 乘法表,debug 反应出来的不怎么对啊,求解释
程序代码:date segment
mulshu dw 0
bmul dw 0
muls dw 81 dup(?)
date ends
code segment
assume cs:code,ds:date
start: mov ax,date
mov ds,ax
mov si,offset muls
mulsm: mov ax,bmul
mul mulshu
mov [si],ax
inc si
inc bmul
cmp bmul,9
jle mulsm
inc mulshu
mov bmul,0
cmp mulshu,9
jle mulsm
mov ah,4ch
int 21h
code ends
end start[local]1[/local]



明白了 inc si 呵呵 要改成 add si,2