summaryrefslogtreecommitdiff
path: root/v4.0/src/DOS/STDASW.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/DOS/STDASW.ASM')
-rw-r--r--v4.0/src/DOS/STDASW.ASM29
1 files changed, 29 insertions, 0 deletions
diff --git a/v4.0/src/DOS/STDASW.ASM b/v4.0/src/DOS/STDASW.ASM
new file mode 100644
index 0000000..d9fa382
--- /dev/null
+++ b/v4.0/src/DOS/STDASW.ASM
@@ -0,0 +1,29 @@
1; SCCSID = @(#)stdasw.asm 1.1 85/04/10
2TRUE EQU 0FFFFH
3FALSE EQU NOT TRUE
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 TRUE
11
12; Set this switch to cause DOS to move itself to the end of memory
13HIGHMEM EQU FALSE
14
15 IF IBM
16ESCCH EQU 0 ; character to begin escape seq.
17TOGLPRN EQU TRUE ;One key toggles printer echo
18ZEROEXT EQU TRUE
19 ELSE
20 IF WANG ;Are we assembling for WANG?
21ESCCH EQU 1FH ;Yes. Use 1FH for escape character
22 ELSE
23ESCCH EQU 1BH
24 ENDIF
25CANCEL EQU "X"-"@" ;Cancel with Ctrl-X
26TOGLPRN EQU FALSE ;Separate keys for printer echo on
27 ;and off
28ZEROEXT EQU TRUE
29 ENDIF