admin 管理员组

文章数量: 886993

将datasg段中每个单词的前4个字母改为大写

编程,将datasg段中每个单词的前4个字母改为大写。
源代码:

assume cs:codesg,ds:datasg
datasg segmentdb '1. display       'db '2. brows         'db '3. replace       'db '4. modify        '
datasg endscodesg segmentstart: mov ax,datasgmov ds,axmov bx,0mov cx,4s: mov si,3mov cx,4
s0: mov al,[bx+si]and al,11011111bmov [bx+si],alinc siloop s0 add bx,16loop smov ax,4c00hint 21hcodesg ends
end start

本文标签: 将datasg段中每个单词的前4个字母改为大写