首页 > 代码库 > 汇编-遍历修改
汇编-遍历修改
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
汇编-遍历修改
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。