编写子程序letterc,将以0结尾的字符串中小写字母转变成大写
名称:letterc
功能:将以0结尾的字符串中小写字母转变成大写
参数:ds:si->字符串首地址
代码如下:
assume cs:codesg
datasg segment
db "Beginner's All-purpose Symbolic Instruction Code.",0
datasg ends
codesg segment
begin:
mov ax,datasg
mov ds,ax
xor si,si
call letterc
mov ax,4c00h
int 21H
letterc:
push bx
push cx
xor cx,cx ;cx用于存放当前处理的字节数据
xor bx,bx ;bx用于索引字符
s0: mov cl,ds:[si+bx]
inc bx
jcxz e0 ;若字节数据为0,处理结束
cmp cx,61h
jb s0 ;若字节数据小于'a',跳过
cmp cx,7ah
ja s0 ;若字节数据大于'z',跳过
sub cx,32
mov ds:[si+bx-1],cl
jmp s0
e0: pop cx
pop bx
ret
codesg ends
end begin
程序截图: