如何增加装配图形中的文字大小?

时间:2016-03-19 16:11:25

标签: assembly x86 masm dosbox

这是我的代码。

.model small
.stack
.data

.code

;setting video mode
mov ah,0
mov al,12h
int 10h


;setting cursor position
mov ah,02h  
mov dh,10    ;row 
mov dl,40     ;column
int 10h

mov ah,09h
mov bl,0eh   ;colour
mov cx,1      ;no.of times
mov al,'B'      ;print B
int 10h   

 mov ah,4ch
int 21h

end

给定代码的输出是

Output of the given code

您可以在视频模式为12h的显示屏上看到字符大小。我想知道增加字符大小的函数代码和参数是什么。

1 个答案:

答案 0 :(得分:3)

角色的大小由视频模式决定。来自http://lateblt.tripod.com/bit24.txt

{{1}}