Question: Write a program to display the extended ASCII characters (ASCJI
codes 80h to FF_h). Display 10 characters per line, separated by
blanks. Stop after the extended characters have been displayed
once.
.model small
.stack 100h
.data
.code
mov cx,127
mov bl,0
print:
mov ah,2
inc cx
cmp cx,255
ja exit
mov dx,cx
int 21h
mov dx,32d
int 21h
jmp go
go:
inc bl
cmp bl,10
je nl
jmp print
nl:
mov ah,2
mov dl,0dh
int 21h
mov dl,0ah
int 21h
mov bl,0
jmp print
exit:
0 comments:
Post a Comment