summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2006-06-09 12:19:17 +0200
committerMichael Brown2006-06-09 12:19:17 +0200
commit6fd1bd0510068b6357608d61918bbac8ffc03a5e (patch)
tree810a0c187f85722c3e1c616abdd972c0795d293f
parentAdded sketch of bit-bashing interface common code (diff)
downloadipxe-6fd1bd0510068b6357608d61918bbac8ffc03a5e.tar.gz
ipxe-6fd1bd0510068b6357608d61918bbac8ffc03a5e.tar.xz
ipxe-6fd1bd0510068b6357608d61918bbac8ffc03a5e.zip
Added missing check-in
-rw-r--r--src/arch/i386/include/int13.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/arch/i386/include/int13.h b/src/arch/i386/include/int13.h
index 46d41dfea..4d5743e9c 100644
--- a/src/arch/i386/include/int13.h
+++ b/src/arch/i386/include/int13.h
@@ -167,6 +167,22 @@ struct int13_disk_parameters {
/** @} */
+/**
+ * @defgroup int13vers INT 13 extension versions
+ * @{
+ */
+
+/** INT13 extensions version 1.x */
+#define INT13_EXTENSION_VER_1_X 0x01
+/** INT13 extensions version 2.0 (EDD-1.0) */
+#define INT13_EXTENSION_VER_2_0 0x20
+/** INT13 extensions version 2.1 (EDD-1.1) */
+#define INT13_EXTENSION_VER_2_1 0x21
+/** INT13 extensions version 3.0 (EDD-3.0) */
+#define INT13_EXTENSION_VER_3_0 0x30
+
+/** @} */
+
extern void register_int13_drive ( struct int13_drive *drive );
extern void unregister_int13_drive ( struct int13_drive *drive );
extern int int13_boot ( unsigned int drive );