Write an assembly language program to print all letters as follows:
AB..........YZ
Note: To print a character on the screen you have to use the int 21h with the service 2, the character to be printed have to be in dl and don’t use loop
For Example.
mov ah, 2
mov dl, 41h
int 21h
can anyone solve this