You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bios.h 369B

1234567891011121314151617
  1. #ifndef BIOS_H
  2. #define BIOS_H
  3. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  4. #define BDA_SEG 0x0040
  5. #define BDA_EBDA 0x000e
  6. #define BDA_EQUIPMENT_WORD 0x0010
  7. #define BDA_FBMS 0x0013
  8. #define BDA_TICKS 0x006c
  9. #define BDA_MIDNIGHT 0x0070
  10. #define BDA_REBOOT 0x0072
  11. #define BDA_REBOOT_WARM 0x1234
  12. #define BDA_NUM_DRIVES 0x0075
  13. #define BDA_CHAR_HEIGHT 0x0085
  14. #endif /* BIOS_H */