Content #
BIOS中断服务程序INT 10h的主功能号AH=06h可以实现按指定范围滚动窗口的功能,同时也具备清屏功能。
——–V-1006——————————- INT 10 - VIDEO - SCROLL UP WINDOW AH = 06h AL = number of lines by which to scroll up (00h = clear entire window) BH = attribute used to write blank lines at bottom of window CH,CL = row,column of window’s upper left corner DH,DL = row,column of window’s lower right corner Return: nothing Note: affects only the currently active page (see AH=05h)
❏ BH=颜色属性。■ bit 0~2:字体颜色(0:黑,1:蓝,2:绿,3:青,4:红,5:紫,6:综,7:白)。■ bit 3:字体亮度(0:字体正常,1:字体高亮度)。■ bit 4~6:背景颜色(0:黑,1:蓝,2:绿,3:青,4:红,5:紫,6:综,7:白)。■ bit 7:字体闪烁(0:不闪烁,1:字体闪烁)。
这条命令主要用于按指定范围滚动窗口,但是如果AL=0的话,则执行清屏功能。在使用清屏功能时(AL寄存器为0),其他BX、CX、DX寄存器参数将不起作用。
From #
一个64位操作系统的设计与实现