diff options
Diffstat (limited to 'v4.0/src/DOS/HIGHSW.ASM')
| -rw-r--r-- | v4.0/src/DOS/HIGHSW.ASM | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/v4.0/src/DOS/HIGHSW.ASM b/v4.0/src/DOS/HIGHSW.ASM new file mode 100644 index 0000000..9bd758f --- /dev/null +++ b/v4.0/src/DOS/HIGHSW.ASM | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | ; SCCSID = @(#)highsw.asm 1.1 85/04/10 | ||
| 2 | TRUE EQU 0FFFFH | ||
| 3 | FALSE EQU NOT TRUE | ||
| 4 | |||
| 5 | ; Use the switches below to produce the standard Microsoft version or the IBM | ||
| 6 | ; version of the operating system | ||
| 7 | MSVER EQU TRUE | ||
| 8 | IBM EQU FALSE | ||
| 9 | WANG EQU FALSE | ||
| 10 | ALTVECT EQU FALSE | ||
| 11 | |||
| 12 | ; Set this switch to cause DOS to move itself to the end of memory | ||
| 13 | HIGHMEM EQU TRUE | ||
| 14 | |||
| 15 | IF IBM | ||
| 16 | ESCCH EQU 0 ; character to begin escape seq. | ||
| 17 | TOGLPRN EQU TRUE ;One key toggles printer echo | ||
| 18 | ZEROEXT EQU TRUE | ||
| 19 | ELSE | ||
| 20 | IF WANG ;Are we assembling for WANG? | ||
| 21 | ESCCH EQU 1FH ;Yes. Use 1FH for escape character | ||
| 22 | ELSE | ||
| 23 | ESCCH EQU 1BH | ||
| 24 | ENDIF | ||
| 25 | CANCEL EQU "X"-"@" ;Cancel with Ctrl-X | ||
| 26 | TOGLPRN EQU FALSE ;Separate keys for printer echo on | ||
| 27 | ;and off | ||
| 28 | ZEROEXT EQU TRUE | ||
| 29 | ENDIF | ||