fix a missing prefix problem in set_vbe_mode.
This commit is contained in:
parent
e3daf570b2
commit
002f8f7c21
3 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-11-11 OKUJI Yoshinori <okuji@gnu.org>
|
||||
|
||||
From Jan Fricke <fricke@uni-greifswald.de>:
|
||||
* stage2/asm.S [!STAGE1_5] (set_vbe_mode): Add a missing `$'
|
||||
prefix.
|
||||
|
||||
2000-11-11 OKUJI Yoshinori <okuji@gnu.org>
|
||||
|
||||
* stage2/bios.c (get_diskinfo): If BIOS supports LBA but doesn't
|
||||
|
|
1
THANKS
1
THANKS
|
@ -26,6 +26,7 @@ Hal Snyder <hal@vailsys.com>
|
|||
Heiko Schroeder <heiko@pool.informatik.rwth-aachen.de>
|
||||
Herbert Nachtnebel <nachtneb@iaee.tuwien.ac.at>
|
||||
Hisazumi Kenji <nel@soraneko.com>
|
||||
Jan Fricke <fricke@uni-greifswald.de>
|
||||
Jochen Hoenicke <jochen@gnu.org>
|
||||
Johannes Kroeger <hanne@squirrel.owl.de>
|
||||
John Tobey <spam@john-edwin-tobey.org>
|
||||
|
|
|
@ -1679,7 +1679,7 @@ ENTRY(set_vbe_mode)
|
|||
/* Save the mode number in %bx */
|
||||
movl 0x8(%ebp), %ebx
|
||||
/* Clear bit D11 */
|
||||
andl 0xF7FF, %ebx
|
||||
andl $0xF7FF, %ebx
|
||||
|
||||
call EXT_C(prot_to_real)
|
||||
.code16
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue