使用汇编程序在命令行上打印第 10 个字符图像

print the 10th characher image on command line with assembler

问题是如何让命令行显示第 10 个字符图像(不是换行符)。我试过这段代码(使用 TASM):

.model tiny
.code
org 100h
begin:
mov ah,2
mov dl,10
int 21h
ret
end begin

这是输出(只是换行):

我想显示第 10 个字符图像,如下图所示:

我的 OS:Windows XP 32 位

处理器:英特尔(R) 酷睿(TM) i3 CPU M 350 x86_64

提前致谢!

使用 BIOS 功能 0Ah 来做到这一点。

mov cx,1
mov bx,7
mov ax,0A0Ah
int 10h