程序集8086循环问题

时间:2017-03-10 14:15:53

标签: loops assembly x86-16

伪代码如下:

read c        //a double digit number
for(i=1,n,i++)
{ if (n%i==0)
     print i;}

在汇编中我把它写成:

mov bx,ax   ;  ax was the number  ex.0020, storing a copy in bx.

mov cx,1    ; the start of the for loop
.forloop:
mov ax,bx   ; resetting ax to be the number(needed for the next iterations)
div cx
cmp ah,0    ; checking if the remainder is 0 
jne .ifinstr
add cl 48    ;adding so my number would be displayed later as decimal
mov dl,cl   ;printing the remainder
mov ah,2
int 21h
sub cl,48   ;converting it back to hexa
.ifinstr:
inc cx      ;the loop goes on
cmp cx,bx
jle .forloop

我已经通过跟踪其步骤进行了检查。第一次迭代顺利进行,然后,在第二次迭代中,它使ax =初始数字,cx = 2,因为它应该,但在' div cx'它跳到了我不知道的地方,它并没有停在任何地方。它确实:

push ax
mov al,12
nop
push 9
.
.

知道为什么会这样做吗?

1 个答案:

答案 0 :(得分:0)

尝试在div指令之前执行mov dx,0。 基本上每次跳转后,dx寄存器中都可能有一些数据,所以你可以在dx或XOR dx,dx中移动零。 这是要做的,因为否则划分将被视为不同。 看到这个: 无符号的分歧。

算法:

when operand is a byte:
AL = AX / operand
AH = remainder (modulus) 

when operand is a word:
AX = (DX AX) / operand
DX = remainder (modulus) 

示例:

MOV AX,203; AX = 00CBh MOV BL,4 DIV BL; AL = 50(32h),AH = 3 RET