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.

53 lines
733 B

  1. ;++
  2. ;
  3. ; Copyright (c) 1989 Microsoft Corporation
  4. ;
  5. ; Module Name:
  6. ;
  7. ; main.inc
  8. ;
  9. ; Abstract:
  10. ;
  11. ; This module defines the segment for the detection module.
  12. ;
  13. ; Author:
  14. ;
  15. ; Shie-Lin Tzong (shielint) 16-Feb-1992.
  16. ;
  17. ; Revision History:
  18. ;
  19. ;
  20. ;--
  21. .386
  22. ;
  23. ; Segment declarations for "Small Model" 16 bit Su Module.
  24. ;
  25. _TEXT segment para use16 public 'CODE'
  26. _TEXT ends
  27. _DATA segment para use16 public 'DATA'
  28. _DATA ends
  29. CONST segment para use16 public 'CONST'
  30. CONST ends
  31. _BSS segment para use16 public 'BSS'
  32. _BSS ends
  33. DGROUP group const, _BSS, _DATA
  34. ;
  35. ; Define the stack location for detection module.
  36. ;
  37. DETECTION_STACK_SP EQU 0fffch
  38. ;
  39. ; External references
  40. ;
  41. extrn _HardwareDetection: near