汇编语言中利用and 和or来改变大小写字母

assume cs:codesg ,ds:datasg datasg segment db 'BaSiC' db 'iNfOrMaTiOn' datasg ends codesg segment start: mov ax,datasg mov ds,ax mov bx,0 mov cx,5 //BaSiC有5个字母 s: mov al,[bx] //将ASCII从ds:bx
相关文章
相关标签/搜索