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

问题7.6 将datasg 段中每个单词的头一个字母改为大写字母

时间:2020-02-02 12:20:23      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:arc   一个   div   end   search   add   字母   单词   highlight   

assume       cs:codesg,ds:datasg
datasg        segment
db               ‘1. file         ‘
db               ‘2. edit         ‘
db               ‘3. search       ‘
db               ‘4. view         ‘
db               ‘5. options      ‘
db               ‘6. help         ‘
datasg              ends
codesg              segment
start:              mov            ax,datasg
                    mov            ds,ax
                    mov            bx,0
                    mov            cx,6
s:                  mov            al,[bx+3]
                    and             al,11011111b
                    mov            [bx+3],al
                    add              bx,16
                    loop             s
codesg              ends
                    end             start

  

问题7.6 将datasg 段中每个单词的头一个字母改为大写字母

标签:arc   一个   div   end   search   add   字母   单词   highlight   

原文地址:https://www.cnblogs.com/jianqiao123/p/12251424.html

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