独孤王道 发表于 2019-3-9 14:54:32

检测点9.2

assume cs:code
code segment
        start:        mov ax,2000h
                        mov ds,ax
                        mov bx,0
                       
                s:        mov cl,
                        mov ch,0
                        jcxz ok
                        inc bx
                        jmp short s
                       
                ok:        mov ds,bx
                        mov ax,4c00
                        int 21h
code ends
end start
页: [1]
查看完整版本: 检测点9.2