mirror of
https://github.com/Microsoft/MS-DOS.git
synced 2025-08-14 10:47:14 -07:00
MS-DOS v2.0 Release
This commit is contained in:
parent
fce0f75959
commit
80ab2fddfd
156 changed files with 56403 additions and 0 deletions
34
v2.0/source/STDSW.ASM
Normal file
34
v2.0/source/STDSW.ASM
Normal file
|
@ -0,0 +1,34 @@
|
|||
TRUE EQU 0FFFFH
|
||||
FALSE EQU NOT TRUE
|
||||
|
||||
; Use the switches below to produce the standard Microsoft version or the IBM
|
||||
; version of the operating system
|
||||
MSVER EQU false
|
||||
IBM EQU true
|
||||
WANG EQU FALSE
|
||||
ALTVECT EQU FALSE
|
||||
|
||||
; Set this switch to cause DOS to move itself to the end of memory
|
||||
HIGHMEM EQU FALSE
|
||||
|
||||
IF IBM
|
||||
ESCCH EQU 0 ; character to begin escape seq.
|
||||
CANCEL EQU 27
|
||||
TOGLINS EQU TRUE ;One key toggles insert mode
|
||||
TOGLPRN EQU TRUE ;One key toggles printer echo
|
||||
ZEROEXT EQU TRUE
|
||||
ELSE
|
||||
IF WANG ;Are we assembling for WANG?
|
||||
ESCCH EQU 1FH ;Yes. Use 1FH for escape character
|
||||
ELSE
|
||||
ESCCH EQU 1BH
|
||||
ENDIF
|
||||
CANCEL EQU "X"-"@" ;Cancel with Ctrl-X
|
||||
TOGLINS EQU WANG ;Separate keys for insert mode on
|
||||
;and off if not WANG
|
||||
TOGLPRN EQU FALSE ;Separate keys for printer echo on
|
||||
;and off
|
||||
ZEROEXT EQU TRUE
|
||||
ENDIF
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue