diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/DEV/XMAEM/INDEMSUS.INC | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/DEV/XMAEM/INDEMSUS.INC')
| -rw-r--r-- | v4.0/src/DEV/XMAEM/INDEMSUS.INC | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/v4.0/src/DEV/XMAEM/INDEMSUS.INC b/v4.0/src/DEV/XMAEM/INDEMSUS.INC new file mode 100644 index 0000000..e352729 --- /dev/null +++ b/v4.0/src/DEV/XMAEM/INDEMSUS.INC | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | COMMENT # | ||
| 2 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | ||
| 3 | * * | ||
| 4 | * MODULE NAME : INDEMSUS * | ||
| 5 | * * | ||
| 6 | * 5669-196 (C) COPYRIGHT 1988 Microsoft Corp. * | ||
| 7 | * * | ||
| 8 | * DESCRIPTIVE NAME: 80386 XMA Emulator messages -- U.S. * | ||
| 9 | * * | ||
| 10 | * STATUS (LEVEL) : Version (0) Level (1.0) * | ||
| 11 | * * | ||
| 12 | * FUNCTION : Include file for U.S. messages for the 80386 XMA Emulator.* | ||
| 13 | * The messages are made PUBLIC so that the initialization * | ||
| 14 | * module, INDEINI, can access them. * | ||
| 15 | * * | ||
| 16 | * MODULE TYPE : INC * | ||
| 17 | * * | ||
| 18 | * MACROS : None * | ||
| 19 | * * | ||
| 20 | * CONTROL BLOCKS : None * | ||
| 21 | * * | ||
| 22 | * CHANGE ACTIVITY : * | ||
| 23 | * * | ||
| 24 | * $MAC(INDEMSUS) COMP(LOAD) PROD(3270PC) : * | ||
| 25 | * * | ||
| 26 | * $D0=D0004700 410 870722 D : NEW FOR RELEASE 1.1 * | ||
| 27 | * $P1=P0000311 410 870804 D : RENAME MODULE'S LIBRARY FILE TYPE TO "INC" * | ||
| 28 | * $P2=P0036900 110 870826 D : CHG MSG NO. INDXE003 * | ||
| 29 | * * | ||
| 30 | * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | ||
| 31 | # | ||
| 32 | |||
| 33 | ;---------------------------------------------------------------------------D0A; | ||
| 34 | ; Declare messages that the emulator will display on the screen. These D0A; | ||
| 35 | ; messages are declared with line lengths of 80 bytes to allow for World D0A; | ||
| 36 | ; Trade translation. The messages are made public so that other modules D0A; | ||
| 37 | ; can access them. D0A; | ||
| 38 | ; Note that the messages are declared 80 bytes long to facilitate world trade translation. D0A; | ||
| 39 | ;---------------------------------------------------------------------------D0A; | ||
| 40 | ; D0A | ||
| 41 | PUBLIC WELCOME ; D0A | ||
| 42 | PUBLIC GOODLOAD ; D0A | ||
| 43 | PUBLIC NO_80386 ; D0A | ||
| 44 | PUBLIC WAS_INST ; D0A | ||
| 45 | ; D0A | ||
| 46 | CR EQU 13 ; ASCII for a carriage return ; @D0A | ||
| 47 | LF EQU 10 ; ASCII for a line feed ; @D0A | ||
| 48 | ; D0A | ||
| 49 | WELCOME DB "INDXE001 80386 XMA Emulator Version 1.00 " ; @D0A | ||
| 50 | DB " (C) Copyright 1988 Microsoft Corporation All rights reserved " ; @D0A | ||
| 51 | DB CR,LF,"$" ; @D0A | ||
| 52 | ; D0A | ||
| 53 | GOODLOAD DB "INDXE002 80386 XMA Emulator installed " ; @D0A | ||
| 54 | DB CR,LF,"$" ; @D0A | ||
| 55 | ; D0A | ||
| 56 | NO_80386 DB "INDXE003 80386 XMA Emulator not installed. This system unit " ; @D0A | ||
| 57 | DB " is not supported. The 80386 XMA Emulator requires " ; @D0A | ||
| 58 | DB " an IBM Personal System/2 Model 80. " ; @D0A | ||
| 59 | DB CR,LF,"$" ; @D0A | ||
| 60 | ; D0A | ||
| 61 | WAS_INST DB "INDXE004 80386 XMA Emulator not installed. " ; @D0A | ||
| 62 | DB " Protected mode already in use. " ; @D0A | ||
| 63 | DB CR,LF,"$" ; @D0A | ||
| 64 | ; D0A | ||