summaryrefslogtreecommitdiff
path: root/v4.0/src/DOS/MSSW.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/DOS/MSSW.ASM')
-rw-r--r--v4.0/src/DOS/MSSW.ASM27
1 files changed, 27 insertions, 0 deletions
diff --git a/v4.0/src/DOS/MSSW.ASM b/v4.0/src/DOS/MSSW.ASM
new file mode 100644
index 0000000..db8eb11
--- /dev/null
+++ b/v4.0/src/DOS/MSSW.ASM
@@ -0,0 +1,27 @@
1; SCCSID = @(#)ibmsw.asm 1.1 85/04/10
2
3include version.inc
4
5IBM EQU ibmver
6WANG EQU FALSE
7
8; Set this switch to cause DOS to move itself to the end of memory
9HIGHMEM EQU FALSE
10
11; Turn on switch below to allow testing disk code with DEBUG. It sets
12; up a different stack for disk I/O (functions > 11) than that used for
13; character I/O which effectively makes the DOS re-entrant.
14
15 IF IBM
16ESCCH EQU 0 ; character to begin escape seq.
17CANCEL EQU 27 ;Cancel with escape
18TOGLPRN EQU TRUE ;One key toggles printer echo
19ZEROEXT EQU TRUE
20 ELSE
21ESCCH EQU 1BH
22CANCEL EQU "X"-"@" ;Cancel with Ctrl-X
23TOGLPRN EQU FALSE ;Separate keys for printer echo on
24 ;and off
25ZEROEXT EQU TRUE
26 ENDIF
27 \ No newline at end of file