21,500
社区成员
发帖
与我相关
我的任务
分享Title Convert to Upper
.model tiny
cseg segment 'code'
org 100h
start:
mov ah, 07h
int 21h
cmp al, 1Bh;'Esc' to exit
jz @ext
and al, not 20h
mov dl, al
mov ah,02h
int 21h
jmp start
@ext:
mov ah, 4ch
int 21h
cseg ends
end start