mirror of
https://github.com/ipxe/ipxe
synced 2026-01-14 01:49:16 +03:00
Relicense files for which I am the sole author (as identified by util/relicense.pl). Signed-off-by: Michael Brown <mcb30@ipxe.org>
15 lines
292 B
C
15 lines
292 B
C
#ifndef BIOS_H
|
|
#define BIOS_H
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
|
|
|
#define BDA_SEG 0x0040
|
|
#define BDA_EQUIPMENT_WORD 0x0010
|
|
#define BDA_FBMS 0x0013
|
|
#define BDA_REBOOT 0x0072
|
|
#define BDA_REBOOT_WARM 0x1234
|
|
#define BDA_NUM_DRIVES 0x0075
|
|
#define BDA_CHAR_HEIGHT 0x0085
|
|
|
|
#endif /* BIOS_H */
|