汇编子程序编写题
编写一个求字符串长度的子程序strlen,该字符串以"0"为结束标志,其首地址存放在DS:DX,其长度保存在CX中返回.strlenprocpushaxpushbxxor...
编写一个求字符串长度的子程序strlen,该字符串以"0"为结束标志,其首地址存放在DS:DX,其长度保存在CX中返回.
strlen proc
push ax
push bx
xor cx,cx
xor al,al
mov bx,dx
again: cmp [bx],al
jz over
inc cx
inc bx
jmp again
over pop bx
pop ax
ret
strlen endp
将这个程序补充完整,可以直接在宏汇编下运行 展开
strlen proc
push ax
push bx
xor cx,cx
xor al,al
mov bx,dx
again: cmp [bx],al
jz over
inc cx
inc bx
jmp again
over pop bx
pop ax
ret
strlen endp
将这个程序补充完整,可以直接在宏汇编下运行 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询