项羽姓秦 发表于 2020-3-3 17:42:04

检测点9.3作业


assume cs:code

code segment
start:        mov ax,2000H
                mov ds,ax
                mov bx,0
        s:        mov ch,0               
                mov cl,               
                inc cx                        ;因为cx的值为0,所以给cx自加1,使在loop程序执行后,cx-1=0向下执行程序。
                inc bx
                loop s
               
        ok:        dec bx
                mov dx,bx
                mov ax,4c00h
                int 21h
code ends
end start
页: [1]
查看完整版本: 检测点9.3作业