diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-06-10 09:09:22 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-06-10 09:09:22 -0400 |
commit | e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5 (patch) | |
tree | 72fa37be59edd8e2c9d65f4660559c263d6814f9 /vgasrc/vgabios.c | |
parent | 7a88c87f99bd694fc4815854056e0ac529ae905d (diff) | |
download | seabios-e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5.tar.gz |
Minor - remove CLEARBITS_BDA and SETBITS_BDA macros.
Remove these infrequently used macros and replace with explicit
GET_BDA/SET_BDA calls.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/vgabios.c')
-rw-r--r-- | vgasrc/vgabios.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/vgasrc/vgabios.c b/vgasrc/vgabios.c index d80cd538..b13d2745 100644 --- a/vgasrc/vgabios.c +++ b/vgasrc/vgabios.c @@ -1197,10 +1197,7 @@ init_bios_area(void) { // init detected hardware BIOS Area // set 80x25 color (not clear from RBIL but usual) - u16 eqf = GET_BDA(equipment_list_flags); - SET_BDA(equipment_list_flags, (eqf & 0xffcf) | 0x20); - - // Just for the first int10 find its children + set_equipment_flags(0x30, 0x20); // the default char height SET_BDA(char_height, 0x10); |