Assembly language program to print small alphabet a to z using loop

Code

org 100h
.stack 100h
.data
.code
main proc  
    
    mov cx,26
    mov dx,97 
    
    
    lable:
       
    mov ah,02
    int 21h
    
    inc dx
    loop lable
    main endp
end main

Output



Comments

Popular posts from this blog

Assembly language program to input an integer from user and display whether the number is even or odd

Assembly language program to input string from user and display it

Assembly language program to input string from user and display its length