assume cs:code
code segment
start:
mov ax,0e6a8h
mov dx,0003h
mov cx,20h
call divdw
mov ax,4c00h
int 21h
divdw:
push bx
push di
mov bx,ax
mov ax,dx
mov dx,0
div cx
mov di,ax
mov ax,bx
div cx
mov cx,dx
mov dx,di
pop di
pop bx
ret
code ends
end start
《汇编语言(第3版)》王爽 实验10.2 解决除法溢出的问题
最新推荐文章于 2020-02-09 15:21:00 发布