Solo letras mayusculas y minúsculas.

Permite leer valores entre A-Z y a-z.

Búsqueda de ejemplos en Ensamblador
;Autor Hector Torres
;URL

.model small
.stack
.data
.code
.startup
        mov ax,0003h ;limpia pantalla
        int 10h
       
        mov cx,0ah
        OTRO:
        mov ah,07h
        int 21h
        cmp al,65  ;97 122
    jl OTRO
    cmp al,90
    jl mayus
    cmp al,97  ;97 122
    jl OTRO
    cmp al,122
    jg OTRO
    mayus:
        mov dl,al
        mov ah,02h           
        int 21h
        loop OTRO
       
.exit
end