summaryrefslogtreecommitdiff
path: root/v1.25/source/STDDOS.ASM
diff options
context:
space:
mode:
Diffstat (limited to 'v1.25/source/STDDOS.ASM')
-rw-r--r--v1.25/source/STDDOS.ASM23
1 files changed, 23 insertions, 0 deletions
diff --git a/v1.25/source/STDDOS.ASM b/v1.25/source/STDDOS.ASM
new file mode 100644
index 0000000..1216b4c
--- /dev/null
+++ b/v1.25/source/STDDOS.ASM
@@ -0,0 +1,23 @@
1 TITLE MS-DOS version 1.25 by Tim Paterson March 3, 1982
2 PAGE 60,132
3; Use the following booleans to set the switches
4FALSE EQU 0
5TRUE EQU NOT FALSE
6
7; Use the switches below to produce the standard Microsoft version of the IBM
8; version of the operating system
9MSVER EQU TRUE
10IBM EQU FALSE
11
12; Set this switch to cause DOS to move itself to the end of memory
13HIGHMEM EQU FALSE
14
15; Turn on switch below to allow testing disk code with DEBUG. It sets
16; up a different stack for disk I/O (functions > 11) than that used for
17; character I/O which effectively makes the DOS re-entrant.
18
19DSKTEST EQU FALSE
20
21 INCLUDE MSDOS.ASM
22
23 \ No newline at end of file