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 /src/misc.c | |
parent | 7a88c87f99bd694fc4815854056e0ac529ae905d (diff) | |
download | seabios-hppa-e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5.zip seabios-hppa-e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5.tar.gz seabios-hppa-e51316d0cc6f663357d9d6c6f4ee3ffddb0d09e5.tar.bz2 |
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 'src/misc.c')
-rw-r--r-- | src/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ mathcp_setup(void) { dprintf(3, "math cp init\n"); // 80x87 coprocessor installed - SETBITS_BDA(equipment_list_flags, 0x02); + set_equipment_flags(0x02, 0x02); enable_hwirq(13, FUNC16(entry_75)); } |