DIV BL使用MASM汇编语言无法正常工作

时间:2016-02-18 16:56:13

标签: assembly x86 masm microprocessors

.model tiny
.486
.code 
.startup
    mov ax,0ffffh
    mov bl,02h
    div bl
.exit
end

我已经编写了这段代码,但它不起作用,因为它的编译和运行程序时ax的值不会改变,我也没有得到余数。

0 个答案:

没有答案