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.

44 lines
757 B

  1. ;++
  2. ;
  3. ; Copyright (c) 1989 Microsoft Corporation
  4. ;
  5. ; Module Name:
  6. ;
  7. ; hwpci.inc
  8. ;
  9. ; Abstract:
  10. ;
  11. ; Author:
  12. ;
  13. ; Revision History:
  14. ;
  15. ;--
  16. ;
  17. ; PCI_INTERFACE_INT interrupt is the PCI BIOS entry point
  18. ; PCI_BIOS_PRESENT AX function code for PCI BIOS entry point
  19. ;
  20. PCI_INTERFACE_INT EQU 01AH
  21. PCI_BIOS_PRESENT EQU 0B101h
  22. ; Down level bios checl
  23. PCI10_BIOS_PRESENT EQU 0B001h
  24. ;
  25. ; Structure for PCI System Data - it is passed to the system
  26. ; through the register to inform it what type of PCI support,
  27. ; if any, is present.
  28. ;
  29. PCI_SYSTEM_DATA struc
  30. MajorRevision db 0
  31. MinorRevision db 0
  32. NoBuses db 0
  33. HwMechanism db 0
  34. PCI_SYSTEM_DATA ends