159 lines
5.4 KiB
NASM
159 lines
5.4 KiB
NASM
|
PAGE ,132
|
|||
|
TITLE DXMSG.ASM -- Dos Extender Text Messages
|
|||
|
|
|||
|
; Copyright (c) Microsoft Corporation 1989-1991. All Rights Reserved.
|
|||
|
|
|||
|
;***********************************************************************
|
|||
|
;
|
|||
|
; DXMSG.ASM -- Dos Extender Text Messages
|
|||
|
;
|
|||
|
;-----------------------------------------------------------------------
|
|||
|
;
|
|||
|
; This module contains the text messages displayed by the 80286 DOS
|
|||
|
; Extender. The messages are contained in this file to ease their
|
|||
|
; conversion to other languages.
|
|||
|
;
|
|||
|
;-----------------------------------------------------------------------
|
|||
|
;
|
|||
|
; 12/06/89 jimmat Update message text as per User Ed
|
|||
|
; 08/03/89 jimmat Original version
|
|||
|
;
|
|||
|
;***********************************************************************
|
|||
|
|
|||
|
.286p
|
|||
|
|
|||
|
; -------------------------------------------------------
|
|||
|
; INCLUDE FILE DEFINITIONS
|
|||
|
; -------------------------------------------------------
|
|||
|
|
|||
|
.xlist
|
|||
|
.sall
|
|||
|
include segdefs.inc
|
|||
|
include gendefs.inc
|
|||
|
.list
|
|||
|
|
|||
|
; -------------------------------------------------------
|
|||
|
; CODE SEGMENT VARIABLES
|
|||
|
; -------------------------------------------------------
|
|||
|
|
|||
|
DXCODE segment
|
|||
|
|
|||
|
; Note: these DXCODE segment messages are all linked after the CodeEnd
|
|||
|
; variable, so they will be discarded after initialization.
|
|||
|
|
|||
|
public ER_CPUTYPE, ER_PROTMODE, ER_NOHIMEM, ER_DXINIT, ER_REALMEM
|
|||
|
public ER_EXTMEM, ER_NOEXE
|
|||
|
|
|||
|
if VCPI
|
|||
|
public ER_VCPI, ER_QEMM386
|
|||
|
endif ;VCPI
|
|||
|
;
|
|||
|
; Wrong CPU type.
|
|||
|
;
|
|||
|
ER_CPUTYPE db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> syst<73>m DOS detekoval neshodn<64> procesory (CPU).',13,10
|
|||
|
db 13,10,'$'
|
|||
|
;
|
|||
|
; Can't figure out how to get into protected mode.
|
|||
|
;
|
|||
|
ER_PROTMODE db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> syst<73>m DOS detekoval konflikt s dal<61><6C>m softwarem ',13,10
|
|||
|
db ' pro chr<68>n<EFBFBD>n<EFBFBD> re<72>im.',13,10
|
|||
|
db 13,10,'$'
|
|||
|
;
|
|||
|
; Couldn't initialize XMS driver.
|
|||
|
;
|
|||
|
ER_NOHIMEM db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> syst<73>m DOS narazil na chybu p<>i inicializaci spr<70>vce ',13,10
|
|||
|
db ' roz<6F><7A><EFBFBD>en<65> pam<61>ti.',13,10
|
|||
|
db 13,10,'$'
|
|||
|
;
|
|||
|
; Non-specific unable to initialize DOSX error.
|
|||
|
;
|
|||
|
ER_DXINIT db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> syst<73>m DOS narazil na nespecifikovanou chybu.'
|
|||
|
db 13,10,'$'
|
|||
|
;
|
|||
|
; A DOS memory allocation failed.
|
|||
|
;
|
|||
|
ER_REALMEM db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Nen<65> dostatek konven<65>n<EFBFBD> pam<61>ti.',13,10,13,10
|
|||
|
db 13,10,'$'
|
|||
|
;
|
|||
|
; Couldn't get enough extended memory to run.
|
|||
|
;
|
|||
|
ER_EXTMEM db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Nen<65> dostatek roz<6F><7A><EFBFBD>en<65> pam<61>ti.',13,10,13,10
|
|||
|
db 13,10,'$'
|
|||
|
;
|
|||
|
; Where is KRNL[23]86.EXE!!!
|
|||
|
;
|
|||
|
ER_NOEXE db 13,10
|
|||
|
db ' Tuto aplikaci pro 16-bitov<6F> chr<68>n<EFBFBD>n<EFBFBD> re<72>im nelze spustit;',13,10,13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> syst<73>m DOS nenalezl pot<6F>ebn<62> syst<73>mov<6F> soubory.',13,10,13,10
|
|||
|
db 13,10,'$'
|
|||
|
|
|||
|
if VCPI
|
|||
|
;
|
|||
|
; VCPI initialization failed.
|
|||
|
;
|
|||
|
ER_VCPI db 13,10
|
|||
|
db ' Nebylo mo<6D>n<EFBFBD> spustit ve standardn<64>m re<72>imu: Probl<62>m spr<70>vce pam<61>ti.'
|
|||
|
db 13,10,'$'
|
|||
|
endif ;VCPI
|
|||
|
|
|||
|
if VCPI
|
|||
|
;
|
|||
|
; This message is displayed if someone fails the Windows INT 2Fh startup
|
|||
|
; broadcast. All of the "Windows 3.0 compatible" 3rd party memory managers
|
|||
|
; do this.
|
|||
|
;
|
|||
|
ER_QEMM386 db 13,10
|
|||
|
db ' Ovlada<64> za<7A><61>zen<65> <20>i program TSR vy<76>aduje, aby se syst<73>m Windows'
|
|||
|
db 13,10
|
|||
|
db ' ve standardn<64>m re<72>imu nespustil nyn<79>. Bu<42> tento program odstra<72>te,'
|
|||
|
db 13,10
|
|||
|
db ' nebo si od dodavatele vy<76><79>dejte aktualizaci kompatibiln<6C>'
|
|||
|
db 13,10
|
|||
|
db ' se standardn<64>m re<72>imem syst<73>mu Windows.'
|
|||
|
db 13,10
|
|||
|
db 13,10
|
|||
|
db ' Stiskem "y" m<><6D>ete spustit Windows ve standardn<64>m re<72>imu.'
|
|||
|
db 13,10
|
|||
|
db 13,10
|
|||
|
db ' Jakoukoliv jinou kl<6B>vesou se vr<76>t<EFBFBD>te do syst<73>mu DOS.'
|
|||
|
db 13,10,'$'
|
|||
|
endif ;VCPI
|
|||
|
|
|||
|
DXCODE ends
|
|||
|
|
|||
|
DXPMCODE segment
|
|||
|
;
|
|||
|
; Both of the next two messages probably mean a serious crash in Windows.
|
|||
|
;
|
|||
|
public szFaultMessage
|
|||
|
;
|
|||
|
; Displayed if a protected mode fault is caught by DOSX.
|
|||
|
;
|
|||
|
szFaultMessage db 13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> DOS: Nezachycen<65> vyj<79>mka chr<68>n<EFBFBD>n<EFBFBD>ho re<72>imu.',13,10,'$'
|
|||
|
|
|||
|
public szRing0FaultMessage
|
|||
|
;
|
|||
|
; Fault in the DOSX internal fault handler. Not recoverable.
|
|||
|
;
|
|||
|
; Note: This is for a real bad one.
|
|||
|
;
|
|||
|
szRing0FaultMessage db 13,10
|
|||
|
db ' Roz<6F><7A><EFBFBD>en<65> DOS: Intern<72> chyba.',13,10,'$'
|
|||
|
|
|||
|
DXPMCODE ends
|
|||
|
|
|||
|
end
|