]> wirehaze git hosting - MS-DOS.git/blob - v1.25/source/STDDOS.ASM

wirehaze git hosting

Merge pull request #61 from EltonAlvess/patch-1
[MS-DOS.git] / v1.25 / source / STDDOS.ASM
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
4 FALSE EQU 0
5 TRUE EQU NOT FALSE
6
7 ; Use the switches below to produce the standard Microsoft version of the IBM
8 ; version of the operating system
9 MSVER EQU TRUE
10 IBM EQU FALSE
11
12 ; Set this switch to cause DOS to move itself to the end of memory
13 HIGHMEM 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
19 DSKTEST EQU FALSE
20
21 INCLUDE MSDOS.ASM
22
23 \1a