diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 19:37:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 41639f80b6405563bf36844f3aeab1b6fe912ec6 (patch) | |
tree | 5c7f77f2132aadcf85b2fb16cbff5c63dcbc3d84 /src/hw | |
parent | 3df600bbdf4672a0a856e33a24d8c8a63215ca96 (diff) | |
download | seabios-41639f80b6405563bf36844f3aeab1b6fe912ec6.tar.gz |
Move romfile definitions from util.h to new file romfile.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw')
-rw-r--r-- | src/hw/floppy.c | 1 | ||||
-rw-r--r-- | src/hw/pci.c | 1 | ||||
-rw-r--r-- | src/hw/ps2port.c | 1 | ||||
-rw-r--r-- | src/hw/ramdisk.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/hw/floppy.c b/src/hw/floppy.c index c051f544..c8ae756c 100644 --- a/src/hw/floppy.c +++ b/src/hw/floppy.c @@ -16,6 +16,7 @@ #include "boot.h" // boot_add_floppy #include "pci.h" // pci_to_bdf #include "pci_ids.h" // PCI_CLASS_BRIDGE_ISA +#include "romfile.h" // romfile_loadint #include "stacks.h" // yield #include "string.h" // memset diff --git a/src/hw/pci.c b/src/hw/pci.c index 295a26d7..f171d107 100644 --- a/src/hw/pci.c +++ b/src/hw/pci.c @@ -12,6 +12,7 @@ #include "farptr.h" // MAKE_FLATPTR #include "pci_regs.h" // PCI_VENDOR_ID #include "pci_ids.h" // PCI_CLASS_DISPLAY_VGA +#include "romfile.h" // romfile_loadint #include "stacks.h" // call32 #include "string.h" // memset #include "x86.h" // readl diff --git a/src/hw/ps2port.c b/src/hw/ps2port.c index 6fd0c3a6..6da297f1 100644 --- a/src/hw/ps2port.c +++ b/src/hw/ps2port.c @@ -10,6 +10,7 @@ #include "biosvar.h" // GET_LOW #include "ps2port.h" // ps2_kbd_command #include "pic.h" // pic_eoi1 +#include "romfile.h" // romfile_loadint #include "stacks.h" // yield diff --git a/src/hw/ramdisk.c b/src/hw/ramdisk.c index cd517e76..3eadd74f 100644 --- a/src/hw/ramdisk.c +++ b/src/hw/ramdisk.c @@ -10,6 +10,7 @@ #include "biosvar.h" // GET_GLOBAL #include "bregs.h" // struct bregs #include "boot.h" // boot_add_floppy +#include "romfile.h" // romfile_findprefix #include "stacks.h" // call16_int #include "string.h" // memset |