Whoops, missed these bits in the previous commit.

This commit is contained in:
jhb 2001-11-03 22:21:21 +00:00
parent a4df14b208
commit 7079074a9c
2 changed files with 4 additions and 2 deletions

View File

@ -1077,7 +1077,7 @@ putchr.3: cmpb $SCR_ROW,%dh # Beyond screen?
movw $(SCR_ROW-1)*SCR_COL/2,%cx # Words to move
rep # Scroll
movsl # screen
movb $' ',%al # Space
movb $0x20,%al # Space
movb $SCR_COL,%cl # Columns to clear
rep # Clear
stosw # line
@ -1085,6 +1085,7 @@ putchr.3: cmpb $SCR_ROW,%dh # Beyond screen?
putchr.4: movw %dx,(%ebx) # Update position
popa # Restore
ret # To caller
')
.p2align 4
#

View File

@ -1077,7 +1077,7 @@ putchr.3: cmpb $SCR_ROW,%dh # Beyond screen?
movw $(SCR_ROW-1)*SCR_COL/2,%cx # Words to move
rep # Scroll
movsl # screen
movb $' ',%al # Space
movb $0x20,%al # Space
movb $SCR_COL,%cl # Columns to clear
rep # Clear
stosw # line
@ -1085,6 +1085,7 @@ putchr.3: cmpb $SCR_ROW,%dh # Beyond screen?
putchr.4: movw %dx,(%ebx) # Update position
popa # Restore
ret # To caller
')
.p2align 4
#