这是我的代码。
.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
给定代码的输出是
您可以在视频模式为12h的显示屏上看到字符大小。我想知道增加字符大小的函数代码和参数是什么。