检测点9.2
assume cs: codesgcodesg segment
start:
mov ax, 2000H
mov ds, ax
mov bx, 0
s:
mov byte ptr ah,
mov cx, ax
jcxz ok
inc bx
jmp short s
ok:
mov dx, bx
mov ax, 4c00H
int 21h
codesg ends
end start assume cs:code
code segment
start: mov ax,2000h
mov ds,ax
mov bx,0
s: mov ch,0
mov cl,
jcxz ok ;当cx=0时,CS:IP指向OK
inc bx
jmp short s
ok: mov dx,bx
mov ax ,4c00h
int 21h
code ends
end start
cx居然也可以拆分{:10_266:},现在才知道{:10_250:}。那么请问一下除了ax bx cx 还有没有可以被拆分的了啊 微末非末 发表于 2017-11-19 11:26
cx居然也可以拆分,现在才知道。那么请问一下除了ax bx cx 还有没有可以被拆分的了啊
dx也可以啊 mov byte ptr ah, 应改为
mov ah,byte ptr ,不然编译过不了
页:
[1]