Print A to Z in assembly language | A to Z in Capital Latter and Small Letter using Loop in Assembly Programing Language
Write Assembly Program to Print A to Z Letter in assembly language.
A to Z in Capital Latter and Small Letter using Loop in Assembly Programing Language
Program Source Code : Capital Letter
org 100h
.model small
.data
.code
main proc
mov cx,26
mov dx,65
test:
mov ah,2
int 21h
inc dx
Loop test
ret
Program Source Code : Small Letter
org 100h
.model small
.data
.code
main proc
mov cx,26
mov dx,97
test:
mov ah,2
int 21h
inc dx
Loop test
ret
Related Video
Post a Comment