我在汇编x8086中有这段代码。我想在图形模式下打印文本;您知道怎么换尺寸吗?
mov dh, 12 ;Row mov bh, 0 ;Display page mov ah, 02h ;SetCursorPosition int 10h mov al, 'x' mov bl, 0Ch ;Color is red mov bh, 0 ;Display page mov ah, 0Eh ;Teletype int 10h
von4xj4u1#
虽然没有“现代”意义上的文本大小调整,但最简单的方法是使用
mov ax,13h int 10h
因为这种模式下的文本比典型的电传打字机要大。您仍然可以使用相同的DOS int errupts将文本打印到屏幕上。
int
1条答案
按热度按时间von4xj4u1#
虽然没有“现代”意义上的文本大小调整,但最简单的方法是使用
因为这种模式下的文本比典型的电传打字机要大。您仍然可以使用相同的DOS
int
errupts将文本打印到屏幕上。