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

汇编-遍历修改

时间:2017-03-11 11:37:43      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:修改   and   http   div   lap   des   .com   code   rac   

 

2. 菜单首字母改为大写

技术分享

技术分享
 1 assume cs:codesg,ds:datasg
 2 
 3 datasg segment
 4         db 1.file    
 5         db 2.edit    
 6         db 3.search  
 7         db 4.view    
 8         db 5.options 
 9         db 6.help    
10 datasg ends
11 
12 codesg segment
13   start:mov ax,datasg
14         mov ds,ax
15         mov bx,0
16         mov cx,6
17       s:mov al,[bx+2]
18         and al,11011111b
19         mov [bx+2],al
20         add bx,10
21         loop s
22         nop
23 codesg ends
24 
25 end start
View Code

 

汇编-遍历修改

标签:修改   and   http   div   lap   des   .com   code   rac   

原文地址:http://www.cnblogs.com/A--Q/p/6534401.html

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