diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 23:57:26 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 135f3f676de1416f0cd0fa7f0c886cf1b72222cb (patch) | |
tree | 805d962c2b66daffcb30b0816cce8faf67e8a809 /src/hw/floppy.c | |
parent | b18557ab09a60476b4269c3a473d8aebeaaa002f (diff) | |
download | seabios-135f3f676de1416f0cd0fa7f0c886cf1b72222cb.tar.gz |
Split disk.h into block.h and std/disk.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/floppy.c')
-rw-r--r-- | src/hw/floppy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hw/floppy.c b/src/hw/floppy.c index e2db2f8e..05c518f0 100644 --- a/src/hw/floppy.c +++ b/src/hw/floppy.c @@ -6,11 +6,11 @@ // This file may be distributed under the terms of the GNU LGPLv3 license. #include "biosvar.h" // SET_BDA +#include "block.h" // struct drive_s #include "boot.h" // boot_add_floppy #include "bregs.h" // struct bregs #include "cmos.h" // inb_cmos #include "config.h" // CONFIG_FLOPPY -#include "disk.h" // DISK_RET_SUCCESS #include "malloc.h" // malloc_fseg #include "output.h" // dprintf #include "pci.h" // pci_to_bdf @@ -18,6 +18,7 @@ #include "pic.h" // pic_eoi1 #include "romfile.h" // romfile_loadint #include "stacks.h" // yield +#include "std/disk.h" // DISK_RET_SUCCESS #include "string.h" // memset #include "util.h" // timer_calc |