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.

101 lines
3.4 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, ������ '
  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, ������ 2.0'
  51. db 13,10,'Copyright 1988-1991 Microsoft Corp.'
  52. db 13,10,'$'
  53. ROMDisabledMsg db 13,10,'����஢���� �����⥩ ��� � ��� �⪫�祭�.$'
  54. UnsupportedROMMsg db 13,10,'��������: ���⥬� �� �����ন���� �⬥�� ����஢���� '
  55. db '�����⥩ ��� � ���.$'
  56. ROMHookedMsg db 13,10,'��������: ����஢���� �����⥩ ��� � ��� �ᯮ�������� '
  57. db '� �� ����� ���� �⪫�祭�.$'
  58. BadDOSMsg db 13,10,'������: ���� �ࠩ��� HIMEM.SYS �।�����祭 ��� Windows NT.$'
  59. NowInMsg db 13,10,'������: ��ᯥ���� �������⥫쭮� ������ 㦥 ��⠭�����.$'
  60. On8086Msg db 13,10,'������: HIMEM.SYS ����� ࠡ����� ⮫쪮 �� ����������� � ��������஬ 80x86.$'
  61. NoExtMemMsg db 13,10,'������: ����㯭�� �������⥫쭠� ������ �� �����㦥��.$'
  62. NoA20HandlerMsg db 13,10,'������: �� 㤠���� ��⠭����� ����஫� ��� ����᭮� ������ A20!$'
  63. VDISKInMsg db 13,10,'������: �ணࠬ�� VDISK 㦥 ��⠭������.$'
  64. FlushMsg db 13,10,7,' �ࠩ��� XMS �� ��⠭�����.',13,10,13,10,'$'
  65. StartMsg db 13,10,'$'
  66. HandlesMsg db ' ����㯭�� ����ਯ��஢ ������.$'
  67. HMAMINMsg db 13,10,'����������� ࠧ��� HMA ��⠭����� ࠢ��� $'
  68. KMsg db 'K.$'
  69. InsA20Msg db 13,10,'��⠭����� ��ࠡ��稪 ����뢠��� ��� A20: $'
  70. InsA20EndMsg db '.$'
  71. InsExtA20Msg db 13,10,'��⠭����� ���譨� ��ࠡ��稪 ����뢠��� ��� A20.$'
  72. NoHMAMsg db 13,10,'��������: ������� HMA ������㯥�.'
  73. db 13,10,'$'
  74. A20OnMsg db 13,10,'��������: ����᭠� ����� A20 㦥 ������⢮����.'
  75. db 13,10,'$'
  76. BadArgMsg db 13,10,'��������: �������� ��ࠬ��� �ந�����஢��: $'
  77. HMAOKMsg db 13,10,'����㯥� ᥣ���� HMA ��ꥬ�� 64K.'
  78. db 13,10,13,10,'$'
  79. db '������ �ணࠬ�� ����� ᮡ�⢥������� Microsoft Corporation.'
  80. ; end of material subject to translation
  81. EndText label byte
  82. _text ends
  83. end