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.

159 lines
5.7 KiB

  1. PAGE ,132
  2. TITLE DXMSG.ASM -- Dos Extender Text Messages
  3. ; Copyright (c) Microsoft Corporation 1989-1991. All Rights Reserved.
  4. ;***********************************************************************
  5. ;
  6. ; DXMSG.ASM -- Dos Extender Text Messages
  7. ;
  8. ;-----------------------------------------------------------------------
  9. ;
  10. ; This module contains the text messages displayed by the 80286 DOS
  11. ; Extender. The messages are contained in this file to ease their
  12. ; conversion to other languages.
  13. ;
  14. ;-----------------------------------------------------------------------
  15. ;
  16. ; 12/06/89 jimmat Update message text as per User Ed
  17. ; 08/03/89 jimmat Original version
  18. ;
  19. ;***********************************************************************
  20. .286p
  21. ; -------------------------------------------------------
  22. ; INCLUDE FILE DEFINITIONS
  23. ; -------------------------------------------------------
  24. .xlist
  25. .sall
  26. include segdefs.inc
  27. include gendefs.inc
  28. .list
  29. ; -------------------------------------------------------
  30. ; CODE SEGMENT VARIABLES
  31. ; -------------------------------------------------------
  32. DXCODE segment
  33. ; Note: these DXCODE segment messages are all linked after the CodeEnd
  34. ; variable, so they will be discarded after initialization.
  35. public ER_CPUTYPE, ER_PROTMODE, ER_NOHIMEM, ER_DXINIT, ER_REALMEM
  36. public ER_EXTMEM, ER_NOEXE
  37. if VCPI
  38. public ER_VCPI, ER_QEMM386
  39. endif ;VCPI
  40. ;
  41. ; Wrong CPU type.
  42. ;
  43. ER_CPUTYPE db 13,10
  44. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  45. db ' DOS extender ha rilevato un''incompatibilit� della CPU.',13,10
  46. db 13,10,'$'
  47. ;
  48. ; Can't figure out how to get into protected mode.
  49. ;
  50. ER_PROTMODE db 13,10
  51. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  52. db ' DOS extender ha rilevato un conflitto con altro software ',13,10
  53. db ' in modalit� protetta.',13,10
  54. db 13,10,'$'
  55. ;
  56. ; Couldn't initialize XMS driver.
  57. ;
  58. ER_NOHIMEM db 13,10
  59. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  60. db ' DOS extender ha rilevato un errore durante l''inizializzazione',13,10
  61. db ' del gestore di memoria estesa.',13,10
  62. db 13,10,'$'
  63. ;
  64. ; Non-specific unable to initialize DOSX error.
  65. ;
  66. ER_DXINIT db 13,10
  67. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  68. db ' DOS extender ha rilevato un errore non specifico.'
  69. db 13,10,'$'
  70. ;
  71. ; A DOS memory allocation failed.
  72. ;
  73. ER_REALMEM db 13,10
  74. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  75. db ' Memoria convenzionale insufficiente.',13,10,13,10
  76. db 13,10,'$'
  77. ;
  78. ; Couldn't get enough extended memory to run.
  79. ;
  80. ER_EXTMEM db 13,10
  81. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  82. db ' Memoria estesa insufficiente.',13,10,13,10
  83. db 13,10,'$'
  84. ;
  85. ; Where is KRNL[23]86.EXE!!!
  86. ;
  87. ER_NOEXE db 13,10
  88. db ' Impossibile eseguire questa applicazione in modalit� protetta 16 bit.',13,10,13,10
  89. db ' DOS extender non ha trovato i file di sistema necessari',13,10
  90. db ' per l''esecuzione.',13,10,13,10
  91. db 13,10,'$'
  92. if VCPI
  93. ;
  94. ; VCPI initialization failed.
  95. ;
  96. ER_VCPI db 13,10
  97. db ' Impossibile eseguire in modalit� Standard per un problema di gestione memoria.'
  98. db 13,10,'$'
  99. endif ;VCPI
  100. if VCPI
  101. ;
  102. ; This message is displayed if someone fails the Windows INT 2Fh startup
  103. ; broadcast. All of the "Windows 3.0 compatible" 3rd party memory managers
  104. ; do this.
  105. ;
  106. ER_QEMM386 db 13,10
  107. db ' Un driver o TSR di periferica ha impedito il caricamento'
  108. db 13,10
  109. db ' di Windows in questa modalit� standard. Rimuovere questo'
  110. db 13,10
  111. db ' programma, o richiedere un aggiornamento che sia compatibile'
  112. db 13,10
  113. db ' con Windows in modalit� standard.'
  114. db 13,10
  115. db 13,10
  116. db ' Premere "s" per caricare ugualmente Windows in modalit� standard.'
  117. db 13,10
  118. db 13,10
  119. db ' Premere un altro tasto per ritornare a DOS.'
  120. db 13,10,'$'
  121. endif ;VCPI
  122. DXCODE ends
  123. DXPMCODE segment
  124. ;
  125. ; Both of the next two messages probably mean a serious crash in Windows.
  126. ;
  127. public szFaultMessage
  128. ;
  129. ; Displayed if a protected mode fault is caught by DOSX.
  130. ;
  131. szFaultMessage db 13,10
  132. db ' DOS extender: exception senza trap in modalit� protetta.',13,10,'$'
  133. public szRing0FaultMessage
  134. ;
  135. ; Fault in the DOSX internal fault handler. Not recoverable.
  136. ;
  137. ; Note: This is for a real bad one.
  138. ;
  139. szRing0FaultMessage db 13,10
  140. db ' DOS extender: errore interno.',13,10,'$'
  141. DXPMCODE ends
  142. end