diff options
| author | Michael Brown | 2006-06-09 12:19:17 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-06-09 12:19:17 +0200 |
| commit | 6fd1bd0510068b6357608d61918bbac8ffc03a5e (patch) | |
| tree | 810a0c187f85722c3e1c616abdd972c0795d293f | |
| parent | Added sketch of bit-bashing interface common code (diff) | |
| download | ipxe-6fd1bd0510068b6357608d61918bbac8ffc03a5e.tar.gz ipxe-6fd1bd0510068b6357608d61918bbac8ffc03a5e.tar.xz ipxe-6fd1bd0510068b6357608d61918bbac8ffc03a5e.zip | |
Added missing check-in
| -rw-r--r-- | src/arch/i386/include/int13.h | 16 |
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 ); |
