From e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 10 Jun 2012 09:09:22 -0400 Subject: 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 --- vgasrc/vgabios.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'vgasrc/vgabios.c') 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); -- cgit