鱼C论坛's Archiver
论坛
›
汇编语言交流
› 检测点9.2
奥普瓯江
发表于 2018-7-9 20:45:55
检测点9.2
补全编程,利用jcxz指令,实现内存2000h段中查找第一个值为0的字节,找到后,讲他的偏移地址储存在dx中。
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 dx, bx
mov ax, 4c00h
int 21h
code ends
end start
页:
[1]
查看完整版本:
检测点9.2