2010年10月14日

汇编,小写字母转大写字母【解惑】

摘要: ;Ex502dseg segmentMsg1 db 'Input a lowercase letter:$'Msg2 db 0dh,0ah,'Uppercase letter is:'Result db ? db '$'dseg endscseg segment assume cs:cseg,ds:dsegStart: mov ax,dseg mov ds,ax lea dx,Msg1 mov ah,09h int 21h mov ah,1 int 21h cmp al,'a' jb Exit cmp al,'z' 阅读全文

posted @ 2010-10-14 21:38 阿杜的世界 阅读(232) 评论(0) 推荐(0)

导航