Clear screen to black when booting ReactOS.

svn path=/trunk/; revision=5530
This commit is contained in:
Casper Hornstrup 2003-08-11 18:56:26 +00:00
parent 9858f2daeb
commit ab7f9064f1
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Changes in v1.8.14 (10/08/2003) (chorns)
- Clear screen to black when booting ReactOS
Changes in v1.8.13 (6/05/2003) (brianp) Changes in v1.8.13 (6/05/2003) (brianp)
- Added support for booting Linux 2.4.x kernels - Added support for booting Linux 2.4.x kernels

View file

@ -60,7 +60,7 @@ EXTERN(_boot_reactos)
movb $0x32,%al // Clear 25 lines movb $0x32,%al // Clear 25 lines
movw $0,%cx // Upper left of scroll movw $0,%cx // Upper left of scroll
movw $0x314F,%dx // Lower right of scroll movw $0x314F,%dx // Lower right of scroll
movb $(1*0x10+1),%bh // Use normal attribute on blanked line movb $(1*0x00+0),%bh // Use normal attribute on blanked line
int $0x10 // Video-IO int $0x10 // Video-IO