Source code of Windows XP (NT5)
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.

38 lines
817 B

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. acpibios.h
  5. Abstract:
  6. ACPI BIOS spec related definitions
  7. Author:
  8. Jake Oshins (jakeo) Feb 6, 1997
  9. Revision History:
  10. --*/
  11. //
  12. // Acpi BIOS Installation check
  13. //
  14. typedef struct _ACPI_BIOS_INSTALLATION_CHECK {
  15. UCHAR Signature[8]; // "RSD PTR" (ascii)
  16. UCHAR Checksum;
  17. UCHAR OemId[6]; // An OEM-supplied string
  18. UCHAR reserved; // must be 0
  19. ULONG RsdtAddress; // 32-bit physical address of RSDT
  20. } ACPI_BIOS_INSTALLATION_CHECK, far *FPACPI_BIOS_INSTALLATION_CHECK;
  21. #define ACPI_BIOS_START 0xE0000
  22. #define ACPI_BIOS_END 0xFFFFF
  23. #define ACPI_BIOS_HEADER_INCREMENT 16