tianmo 发表于 2019-8-16 10:14:55

监测点9.3

本帖最后由 tianmo 于 2019-8-16 10:17 编辑

assume cs:codesg
codesg 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 dx,bx
                mov ax,4c00h
                int 21h
codesg ends
end start
               
               
页: [1]
查看完整版本: 监测点9.3