mirror of
https://github.com/Microsoft/MS-DOS.git
synced 2025-08-21 05:53:37 -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
33
v2.0/source/COMEQU.ASM
Normal file
33
v2.0/source/COMEQU.ASM
Normal file
|
@ -0,0 +1,33 @@
|
|||
;*************************************
|
||||
; COMMAND EQUs which are not switch dependant
|
||||
|
||||
IFDEF IBM
|
||||
INCLUDE IFEQU.ASM
|
||||
ENDIF
|
||||
|
||||
|
||||
SYM EQU ">"
|
||||
|
||||
LINPERPAG EQU 23
|
||||
NORMPERLIN EQU 1
|
||||
WIDEPERLIN EQU 5
|
||||
COMBUFLEN EQU 128 ; Length of commmand buffer
|
||||
|
||||
DRVCHAR EQU ":"
|
||||
|
||||
FCB EQU 5CH
|
||||
|
||||
VARSTRUC STRUC
|
||||
ISDIR DB ?
|
||||
SIZ DB ?
|
||||
TTAIL DW ?
|
||||
INFO DB ?
|
||||
BUF DB DIRSTRLEN + 20 DUP (?)
|
||||
VARSTRUC ENDS
|
||||
|
||||
WSWITCH EQU 1 ; Wide display during DIR
|
||||
PSWITCH EQU 2 ; Pause (or Page) mode during DIR
|
||||
ASWITCH EQU 4 ; ASCII mode during COPY
|
||||
BSWITCH EQU 8 ; Binary mode during COPY
|
||||
VSWITCH EQU 10H ; Verify switch
|
||||
GOTSWITCH EQU 8000H ; Meta switch set if switch character encountered
|
Loading…
Add table
Add a link
Reference in a new issue