assume cs:code code segment mov dx,1 mov ax,86A1H ;数据默认放在 ax,dx mov bx,100 div bx ;结果默认放在 ax,dx中 code ends end
最后结果:
ax=03E8 整数结果
dx=1 余数