Leaked source code of windows server 2003
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.

102 lines
2.8 KiB

  1. ;/* messages.asm
  2. ; *
  3. ; * Microsoft Confidential
  4. ; * Copyright (C) Microsoft Corporation 1988-1991
  5. ; * All Rights Reserved.
  6. ; *
  7. ; * Modification History
  8. ; *
  9. ; * Sudeepb 14-May-1991 Ported for NT XMS support
  10. ; */
  11. page 95,160
  12. title himem3 - Initialization messages
  13. .xlist
  14. include himem.inc
  15. .list
  16. ;*----------------------------------------------------------------------*
  17. ;* DRIVER MESSAGES *
  18. ;*----------------------------------------------------------------------*
  19. public SignOnMsg
  20. public ROMDisabledMsg
  21. public UnsupportedROMMsg
  22. public ROMHookedMsg
  23. public BadDOSMsg
  24. public NowInMsg
  25. public On8086Msg
  26. public NoExtMemMsg
  27. public FlushMsg
  28. public StartMsg
  29. public HandlesMsg
  30. public HMAMINMsg
  31. public KMsg
  32. public NoHMAMsg
  33. public A20OnMsg
  34. public HMAOKMsg
  35. public InsA20Msg
  36. public InsA20EndMsg
  37. public InsExtA20msg
  38. public NoA20HandlerMsg
  39. public VDISKInMsg
  40. public BadArgMsg
  41. public EndText
  42. ; Start of text subject to translation
  43. ; Material appearing in single quotation marks should be translated.
  44. SignOnMsg db 13,10,'HIMEM: DOS XMS Driver, Version '
  45. db '0' + (HimemVersion shr 8),'.'
  46. db '0' + ((HimemVersion and 0ffh) / 16)
  47. db '0' + ((HimemVersion and 0ffh) mod 16)
  48. db ' - '
  49. db DATE_String
  50. db 13,10,'XMS Specification Version 2.0'
  51. db 13,10,'Copyright 1988-1991 Microsoft Corp.'
  52. db 13,10,'$'
  53. ROMDisabledMsg db 13,10, 'Shadow RAM disabled.$'
  54. UnsupportedROMMsg db 13,10,'WARNING: Shadow RAM disable not supported '
  55. db 'on this system.$'
  56. ROMHookedMsg db 13,10,'WARNING: Shadow RAM is in use and can''t '
  57. db 'be disabled.$'
  58. BadDOSMsg db 13,10,'ERROR: This HIMEM.SYS is for Windows NT.$'
  59. NowInMsg db 13,10,'ERROR: An Extended Memory Manager is already installed.$'
  60. On8086Msg db 13,10,'ERROR: HIMEM.SYS requires an 80x86-based machine.$'
  61. NoExtMemMsg db 13,10,'ERROR: No available extended memory was found.$'
  62. NoA20HandlerMsg db 13,10,'ERROR: Unable to control A20 line!$'
  63. VDISKInMsg db 13,10,'ERROR: VDISK memory allocator already installed.$'
  64. FlushMsg db 13,10,7,' XMS Driver not installed.',13,10,13,10,'$'
  65. StartMsg db 13,10,'$'
  66. HandlesMsg db ' extended memory handles available.$'
  67. HMAMINMsg db 13,10,'Minimum HMA size set to $'
  68. KMsg db 'K.$'
  69. InsA20Msg db 13,10,'Installed A20 handler number $'
  70. InsA20EndMsg db '.$'
  71. InsExtA20Msg db 13,10,'Installed external A20 handler.$'
  72. NoHMAMsg db 13,10,'WARNING: The High Memory Area is unavailable.'
  73. db 13,10,'$'
  74. A20OnMsg db 13,10,'WARNING: The A20 Line was already enabled.'
  75. db 13,10,'$'
  76. BadArgMsg db 13,10,'WARNING: Invalid parameter ignored: $'
  77. HMAOKMsg db 13,10,'64K High Memory Area is available.'
  78. db 13,10,13,10,'$'
  79. db 'This program is the property of Microsoft Corporation.'
  80. ; end of material subject to translation
  81. EndText label byte
  82. _text ends
  83. end
  84.