From: hpa Date: Mon, 9 Apr 2001 23:16:06 +0000 (+0000) Subject: Always use ScrollAttribute for scrolling. X-Git-Tag: syslinux-3.11~857 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a4c25780ab38d0764a1f510e41161e99f1e9b193;p=platform%2Fupstream%2Fsyslinux.git Always use ScrollAttribute for scrolling. --- diff --git a/isolinux.asm b/isolinux.asm index ea8a534..7c812f2 100644 --- a/isolinux.asm +++ b/isolinux.asm @@ -3156,7 +3156,7 @@ msg_line_wrap: ; Screen wraparound msg_scroll: xor cx,cx ; Upper left hand corner mov dx,[ScreenSize] mov [CursorRow],dh ; New cursor at the bottom - mov bh,[TextAttribute] + mov bh,[ScrollAttribute] mov ax,0601h ; Scroll up one line int 10h jmp short msg_gotoxy diff --git a/ldlinux.asm b/ldlinux.asm index 3b1c1d1..e0ac944 100644 --- a/ldlinux.asm +++ b/ldlinux.asm @@ -3141,7 +3141,7 @@ msg_line_wrap: ; Screen wraparound msg_scroll: xor cx,cx ; Upper left hand corner mov dx,[ScreenSize] mov [CursorRow],dh ; New cursor at the bottom - mov bh,[TextAttribute] + mov bh,[ScrollAttribute] mov ax,0601h ; Scroll up one line int 10h jmp short msg_gotoxy diff --git a/pxelinux.asm b/pxelinux.asm index 0490d12..3fdae1b 100644 --- a/pxelinux.asm +++ b/pxelinux.asm @@ -3165,7 +3165,7 @@ msg_line_wrap: ; Screen wraparound msg_scroll: xor cx,cx ; Upper left hand corner mov dx,[ScreenSize] mov [CursorRow],dh ; New cursor at the bottom - mov bh,[TextAttribute] + mov bh,[ScrollAttribute] mov ax,0601h ; Scroll up one line int 10h jmp short msg_gotoxy