How to increase the text size in assembly graphics?

Viewed 4954

Here is my code.

.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

The output of the given code is

Output of the given code

As you can see the character size on the display with the video mode of 12h. I want to know that what is the function code and parameters to increase the size of the character.

1 Answers
Related