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.

72 lines
1.6 KiB

  1. //depot/Lab01_N/Base/ntos/config/i386/initdat.c#3 - edit change 11365 (text)
  2. /*++
  3. Copyright (c) 1990, 1991 Microsoft Corporation
  4. Module Name:
  5. initdat.c
  6. Abstract:
  7. Author:
  8. Environment:
  9. Kernel mode.
  10. Revision History:
  11. --*/
  12. #include "cmp.h"
  13. //
  14. // ***** INIT *****
  15. //
  16. //
  17. // Data for CmGetSystemControlValues
  18. //
  19. //
  20. // ----- CmControlVector -----
  21. //
  22. #ifdef ALLOC_DATA_PRAGMA
  23. #pragma data_seg("INIT")
  24. #pragma const_seg("INITCONST")
  25. #endif
  26. const PCHAR SearchStrings[] = {
  27. "Ver", "Rev", "Rel", "v0", "v1", "v2", "v3", "v4", "v5",
  28. "v6", "v7", "v8", "v9", "v 0", "v 1", "v 2", "v 3", "v 4",
  29. "v 5", "v 6", "v 7", "v 8", "v 9", NULL };
  30. PCHAR BiosBegin = { 0 };
  31. PCHAR Start = { 0 };
  32. PCHAR End = { 0 };
  33. const UCHAR CmpID1[] = "80%u86-%c%x";
  34. const UCHAR CmpID2[] = "x86 Family %u Model %u Stepping %u";
  35. const WCHAR CmpVendorID[] = L"VendorIdentifier";
  36. const WCHAR CmpProcessorNameString[] = L"ProcessorNameString";
  37. const WCHAR CmpFeatureBits[] = L"FeatureSet";
  38. const WCHAR CmpMHz[] = L"~MHz";
  39. const WCHAR CmpUpdateSignature[] = L"Update Signature";
  40. const WCHAR CmDisabledFloatingPointProcessor[] = L"DisabledFloatingPointProcessor";
  41. const WCHAR CmPhysicalAddressExtension[] = L"PhysicalAddressExtension";
  42. #ifdef ALLOC_DATA_PRAGMA
  43. #pragma data_seg("PAGE")
  44. #pragma const_seg("PAGECONST")
  45. #endif
  46. const UCHAR CmpCyrixID[] = "CyrixInstead";
  47. const UCHAR CmpIntelID[] = "GenuineIntel";
  48. const UCHAR CmpAmdID[] = "AuthenticAMD";
  49. const UCHAR CmpTransmetaID[] = "GenuineTMx86";
  50. const UCHAR CmpCentaurID[] = "CentaurHauls";
  51. #ifdef ALLOC_DATA_PRAGMA
  52. #pragma data_seg()
  53. #pragma const_seg()
  54. #endif