diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-07-04 13:04:29 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-07-04 13:04:29 -0400 |
commit | 9521e26a164eb4689b34d82a5de0d998bdd4c4dc (patch) | |
tree | d3ba8e12b31213defe5fa794e4d0bcec711c871f /src/pic.c | |
parent | 0525d29af0803bdfca40f9bb8b1f8cf5b9a84c05 (diff) | |
download | seabios-hppa-9521e26a164eb4689b34d82a5de0d998bdd4c4dc.zip seabios-hppa-9521e26a164eb4689b34d82a5de0d998bdd4c4dc.tar.gz seabios-hppa-9521e26a164eb4689b34d82a5de0d998bdd4c4dc.tar.bz2 |
Extract 'struct bregs' out of biosvar.h; clean up header includes.
Diffstat (limited to 'src/pic.c')
-rw-r--r-- | src/pic.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5,7 +5,9 @@ // // This file may be distributed under the terms of the GNU GPLv3 license. -#include "pic.h" +#include "pic.h" // get_pic1_isr +#include "util.h" // dprintf +#include "config.h" // CONFIG_* void pic_setup() |