mirror of
https://github.com/Microsoft/MS-DOS.git
synced 2025-07-16 10:03:55 -07:00
MS-DOS v1.25 Release
This commit is contained in:
parent
b1e80fe5b3
commit
fce0f75959
35 changed files with 13610 additions and 0 deletions
23
v1.25/source/STDDOS.ASM
Normal file
23
v1.25/source/STDDOS.ASM
Normal file
|
@ -0,0 +1,23 @@
|
|||
TITLE MS-DOS version 1.25 by Tim Paterson March 3, 1982
|
||||
PAGE 60,132
|
||||
; Use the following booleans to set the switches
|
||||
FALSE EQU 0
|
||||
TRUE EQU NOT FALSE
|
||||
|
||||
; Use the switches below to produce the standard Microsoft version of the IBM
|
||||
; version of the operating system
|
||||
MSVER EQU TRUE
|
||||
IBM EQU FALSE
|
||||
|
||||
; Set this switch to cause DOS to move itself to the end of memory
|
||||
HIGHMEM EQU FALSE
|
||||
|
||||
; Turn on switch below to allow testing disk code with DEBUG. It sets
|
||||
; up a different stack for disk I/O (functions > 11) than that used for
|
||||
; character I/O which effectively makes the DOS re-entrant.
|
||||
|
||||
DSKTEST EQU FALSE
|
||||
|
||||
INCLUDE MSDOS.ASM
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue