aboutsummaryrefslogtreecommitdiff
path: root/src/disk.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-02 20:48:46 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-02 20:48:46 -0400
commit5d369d8d9eb5326db111cc2e518c74739dbe3f84 (patch)
tree1fe04c2372e2041c5feb7e6c177a25f692cf4e76 /src/disk.c
parent3cb0f504a782c1a9c790b939631854473c039397 (diff)
downloadseabios-hppa-5d369d8d9eb5326db111cc2e518c74739dbe3f84.zip
seabios-hppa-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.gz
seabios-hppa-5d369d8d9eb5326db111cc2e518c74739dbe3f84.tar.bz2
Move code centered around specific hardware devices to src/hw/
Move many C files from the src/ directory to the new src/hw/ directory. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/disk.c')
-rw-r--r--src/disk.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/disk.c b/src/disk.c
index 975d053..78252b1 100644
--- a/src/disk.c
+++ b/src/disk.c
@@ -9,10 +9,10 @@
#include "biosvar.h" // SET_BDA
#include "config.h" // CONFIG_*
#include "util.h" // debug_enter
-#include "pic.h" // pic_eoi2
+#include "hw/pic.h" // pic_eoi2
#include "bregs.h" // struct bregs
-#include "pci.h" // pci_bdf_to_bus
-#include "ata.h" // ATA_CB_DC
+#include "hw/pci.h" // pci_bdf_to_bus
+#include "hw/ata.h" // ATA_CB_DC
/****************************************************************