;显示汉字
code segment
assume cs:code,ds:code
org 100h
start:
push cs
pop ds
mov ax,12h
int 10h
mov ax,0a000h
mov es,ax
cld
lea si,dot
mov di,(30*80+10)*2
mov cx,cnt/2
Q1:movsb
movsb
add di,78
loop Q1
mov ah,0
int 16h
mov ah,4ch
int 21h
;**** 字模点阵 ****
dot db 20h,04,18h,04,09h,24h,0ffh,0a4h,02,24h,42h,24h,22h,24h,14h,24h
db 14h,24h,08h,24h,08h,24h,14h,24h,22h,04h,43h,04h,81h,14h,00,08h
;****************
cnt equ $-dot
;
code ends
end start
显示汉字还是西文?