summaryrefslogtreecommitdiffstats
path: root/private/mvdm/dos/v86/cmd/edlin/edlstdsw.inc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--private/mvdm/dos/v86/cmd/edlin/edlstdsw.inc38
1 files changed, 38 insertions, 0 deletions
diff --git a/private/mvdm/dos/v86/cmd/edlin/edlstdsw.inc b/private/mvdm/dos/v86/cmd/edlin/edlstdsw.inc
new file mode 100644
index 000000000..89605e4de
--- /dev/null
+++ b/private/mvdm/dos/v86/cmd/edlin/edlstdsw.inc
@@ -0,0 +1,38 @@
+;/*
+; * Microsoft Confidential
+; * Copyright (C) Microsoft Corporation 1991
+; * All Rights Reserved.
+; */
+; SCCSID = @(#)stdsw.asm 1.1 85/04/10
+; Use the switches below to produce the standard Microsoft version or the IBM
+; version of the operating system
+
+
+;include EDLVERS.INC ;IBM/MSVER/JAPVER switches
+
+
+WANG EQU FALSE
+Rainbow EQU FALSE
+
+
+; Set this switch to cause DOS to move itself to the end of memory
+HIGHMEM EQU FALSE
+
+ IF IBM
+ESCCH EQU 0 ; character to begin escape seq.
+CANCEL EQU 27 ;Cancel with ESCAPE
+TOGLPRN EQU TRUE ;One key toggles printer echo
+ZEROEXT EQU TRUE
+ ELSE
+ IF WANG ;Are we assembling for WANG?
+ESCCH EQU 1FH ;Yes. Use 1FH for escape character
+ ELSE
+ESCCH EQU 1BH
+ ENDIF
+CANCEL EQU "X"-"@" ;Cancel with Ctrl-X
+TOGLPRN EQU FALSE ;Separate keys for printer echo on
+ ;and off
+ZEROEXT EQU TRUE
+ ENDIF
+
+ \ No newline at end of file