summaryrefslogtreecommitdiff
path: root/v4.0/src/DEV/XMA2EMS/EMS_US.MSG
diff options
context:
space:
mode:
authorGravatar Mark Zbikowski2024-04-25 21:24:10 +0100
committerGravatar Microsoft Open Source2024-04-25 22:32:27 +0000
commit2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch)
tree80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/DEV/XMA2EMS/EMS_US.MSG
parentMerge pull request #430 from jpbaltazar/typoptbr (diff)
downloadms-dos-main.tar.gz
ms-dos-main.tar.xz
ms-dos-main.zip
MZ is back!HEADmain
Diffstat (limited to 'v4.0/src/DEV/XMA2EMS/EMS_US.MSG')
-rw-r--r--v4.0/src/DEV/XMA2EMS/EMS_US.MSG110
1 files changed, 110 insertions, 0 deletions
diff --git a/v4.0/src/DEV/XMA2EMS/EMS_US.MSG b/v4.0/src/DEV/XMA2EMS/EMS_US.MSG
new file mode 100644
index 0000000..72100b8
--- /dev/null
+++ b/v4.0/src/DEV/XMA2EMS/EMS_US.MSG
@@ -0,0 +1,110 @@
1LF EQU 0AH ;ASCII line feed
2CR EQU 0DH ;ASCII carriage return
3
4CRLF DB CR,LF ; gga used to skip a blank line
5 db '$'
6
7WELCOME_MSG DB 'XMA2EMS: Expanded Memory Manager'
8 DB CR,LF
9 DB '(c)Copyright 1988 Microsoft Corporation All rights reserved'
10 DB CR,LF
11 DB '$'
12
13DGS_START_MSG DB CR,LF
14 DB 'Performing XMA diagnostics: '
15 DB '$'
16
17DGS_END_MSG DB CR,LF
18 DB 'Diagnostics completed '
19 DB CR,LF,LF
20 DB '$'
21
22PAGE_FRAME_MSG DB 'Page Frame starts at........................ '
23PF_START DB 'XXXX'
24 DB ':0'
25 DB CR,LF
26 DB 'Pages mapped to conventional memory......... '
27CONV_PAGES DB '0 '
28 DB CR,LF
29 DB '$'
30RESERVE_MSG DB 'Pages reserved for 3270 PC Control Program.. '
31RES_PAGES DB '0 '
32 DB CR,LF
33 DB '$'
34AVAIL_MSG DB 'Pages available for expanded memory......... '
35EMS_PAGES DB '0 '
36 DB CR,LF
37 DB '$'
38
39XMA1_ERR_MSG DB CR,LF
40 DB 'Adapter error '
41 DB CR,LF
42 DB '$'
43
44NOT_FOUND_MSG DB CR,LF
45 DB 'Cannot find adapter '
46 DB CR,LF
47 DB '$'
48
49PARM_ERR_MSG DB CR,LF
50 DB 'Parameter syntax or value error '
51 DB CR,LF
52 DB '$'
53
54NO_EMUL_MSG DB CR,LF
55 DB 'Cannot find XMA Emulator device driver '
56 DB CR,LF
57 DB '$'
58
59WRONG_EMUL_MSG DB CR,LF
60 DB 'Incorrect version of XMAEM.SYS '
61 DB CR,LF
62 DB '$'
63
64WRONG_XMAA_MSG DB CR,LF
65 DB 'Incorrect version of INDXMAA.SYS '
66 DB CR,LF
67 DB '$'
68
69REQ_EMS_ERR_MSG DB CR,LF
70 DB 'Too many EMS pages requested in /X parameter '
71 DB CR,LF
72 DB '$'
73
74NOT_INSTL_MSG DB 'Expanded Memory Manager has NOT been installed'
75 DB CR,LF
76 DB '$'
77
78CONFLICT_MSG DB 'Specified page address conflicts with installed adapter at address '
79CONFL_ADDRESS DB '0 '
80 DB CR,LF
81 DB '$'
82
83HOLE_MSG DB 'Possible 16KB page available at address '
84HOLE_ADDRESS DB '0 '
85 DB CR,LF
86 DB '$'
87
88FRAME_MSG DB CR,LF
89 DB 'Possible 64KB frame available at address '
90FRAME_ADDRESS DB '0 '
91 DB CR,LF
92 DB '$'
93
94NO_PAGES_MSG DB 'No page addresses specified'
95 DB CR,LF
96 DB '$'
97
98
99SIZE_MSG1 DB SIZE1_END - 2 -$
100MEM_OK DB 4 DUP (?)
101 DB ' KB OK$'
102SIZE1_END EQU $
103
104NEXT_LINE DB NXT_LN_END - 2 -$
105 DB ' ',CR,LF,'$'
106NXT_LN_END EQU $
107
108Prompt_Msg db 'Press any key to continue . . .',CR,LF
109 db '$'
110