summaryrefslogtreecommitdiff
path: root/v4.0/src/DOS/STDSW.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/DOS/STDSW.ASM')
-rw-r--r--v4.0/src/DOS/STDSW.ASM32
1 files changed, 32 insertions, 0 deletions
diff --git a/v4.0/src/DOS/STDSW.ASM b/v4.0/src/DOS/STDSW.ASM
new file mode 100644
index 0000000..c9fc581
--- /dev/null
+++ b/v4.0/src/DOS/STDSW.ASM
@@ -0,0 +1,32 @@
1; SCCSID = @(#)stdsw.asm 1.1 85/04/10
2TRUE EQU 0FFFFH
3FALSE EQU 0
4
5; Use the switches below to produce the standard Microsoft version or the IBM
6; version of the operating system
7MSVER EQU TRUE
8IBM EQU FALSE
9WANG EQU FALSE
10ALTVECT EQU FALSE
11Rainbow EQU FALSE
12
13
14; Set this switch to cause DOS to move itself to the end of memory
15HIGHMEM EQU FALSE
16
17 IF IBM
18ESCCH EQU 0 ; character to begin escape seq.
19CANCEL EQU 27 ;Cancel with ESCAPE
20TOGLPRN EQU TRUE ;One key toggles printer echo
21ZEROEXT EQU TRUE
22 ELSE
23 IF WANG ;Are we assembling for WANG?
24ESCCH EQU 1FH ;Yes. Use 1FH for escape character
25 ELSE
26ESCCH EQU 1BH
27 ENDIF
28CANCEL EQU "X"-"@" ;Cancel with Ctrl-X
29TOGLPRN EQU FALSE ;Separate keys for printer echo on
30 ;and off
31ZEROEXT EQU TRUE
32 ENDIF