就是要努力呀 发表于 2020-4-26 13:47:05

检测点9.2 检测点9.3

9.2
assume cs:code

code segment
start:
                mov ax, 2000h
                mov ds, ax
                mov bx, 0
               
                s:
                        mov cx, 0
                        mov cl,
                        jcxz ok
                        inc bx
                jmp short s
               
                ok:        mov dx, bx
                       
                mov ax, 4c00h
                int 21h
code ends

end start

9.3
assume cs:code

code segment
start:
                mov ax, 2000h
                mov ds, ax
                mov bx, 0
               
                s:
                        mov cl,
                        mov ch, 0
                        inc cx
                        inc bx
                loop s
               
                ok:        dec bx
                        mov dx, bx
                       
                mov ax, 4c00h
                int 21h
code ends

end start
页: [1]
查看完整版本: 检测点9.2 检测点9.3