aboutsummaryrefslogtreecommitdiffstats
path: root/src/block.h
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2014-05-10 01:20:46 -0400
committerKevin O'Connor <kevin@koconnor.net>2014-06-04 11:06:58 -0400
commit02f7676421af87f59e0b8e039fb7f13aaecd0b2b (patch)
tree634a221e7d1fc149d1955f2e5a2906119ed923b2 /src/block.h
parent9e735bbd1d45b41319bb27358c3d2e8079c9786a (diff)
downloadseabios-02f7676421af87f59e0b8e039fb7f13aaecd0b2b.tar.gz
cdemu: store internal cdemu fields in standard "el-torito" spec format.
Store the fields necessary to export the "el-torito" spec information directly in an internal copy of the "el-torito" struct. This simplifies the interface and obviates the need for an internal home grown struct with the same info. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/block.h')
-rw-r--r--src/block.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/block.h b/src/block.h
index c870e138..945e6fe1 100644
--- a/src/block.h
+++ b/src/block.h
@@ -36,21 +36,6 @@ struct chs_s {
u16 pad;
};
-// ElTorito Device Emulation data
-struct cdemu_s {
- struct drive_s *emulated_drive_gf;
- u32 ilba;
- u16 buffer_segment;
- u16 load_segment;
- u16 sector_count;
- u8 active;
- u8 media;
- u8 emulated_extdrive;
-
- // Virtual device
- struct chs_s lchs;
-};
-
struct drive_s {
u8 type; // Driver type (DTYPE_*)
u8 floppy_type; // Type of floppy (only for floppy drives).