码迷,mamicode.com
首页 > 其他好文 > 详细

编写一个子程序:将包含任意字符,以0结尾的字符串中的小写字母转变成大写字母

时间:2018-11-12 13:53:59      阅读:713      评论:0      收藏:0      [点我收藏+]

标签:class   segment   col   next   Beginner   pos   字符串   rpo   字符   

assume cs:code,ds:data
data segment
  db  Beginners All-purpose Symbolic Instruction Code.,0
data ends

code segment
begin:
          mov ax,data
          mov ds,ax
          mov si,0
          call letterc

          mov ah,4ch
          int 21h

letterc:
            push ax
 s:
            mov al,[si]
            mov ah,0
            mov cx,ax
            jcxz return
            cmp al,61h
            jb next
            cmp al,91h
            ja next
            and al,11011111b
            mov [si],al
next:
            inc si
            jmp short s

 return:
            pop ax
            ret
code ends
end begin

 

编写一个子程序:将包含任意字符,以0结尾的字符串中的小写字母转变成大写字母

标签:class   segment   col   next   Beginner   pos   字符串   rpo   字符   

原文地址:https://www.cnblogs.com/gkp307/p/9945954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!