diff options
Diffstat (limited to 'v2.0/source/COMEQU.ASM')
| -rw-r--r-- | v2.0/source/COMEQU.ASM | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/v2.0/source/COMEQU.ASM b/v2.0/source/COMEQU.ASM new file mode 100644 index 0000000..81763fb --- /dev/null +++ b/v2.0/source/COMEQU.ASM | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | ;************************************* | ||
| 2 | ; COMMAND EQUs which are not switch dependant | ||
| 3 | |||
| 4 | IFDEF IBM | ||
| 5 | INCLUDE IFEQU.ASM | ||
| 6 | ENDIF | ||
| 7 | |||
| 8 | |||
| 9 | SYM EQU ">" | ||
| 10 | |||
| 11 | LINPERPAG EQU 23 | ||
| 12 | NORMPERLIN EQU 1 | ||
| 13 | WIDEPERLIN EQU 5 | ||
| 14 | COMBUFLEN EQU 128 ; Length of commmand buffer | ||
| 15 | |||
| 16 | DRVCHAR EQU ":" | ||
| 17 | |||
| 18 | FCB EQU 5CH | ||
| 19 | |||
| 20 | VARSTRUC STRUC | ||
| 21 | ISDIR DB ? | ||
| 22 | SIZ DB ? | ||
| 23 | TTAIL DW ? | ||
| 24 | INFO DB ? | ||
| 25 | BUF DB DIRSTRLEN + 20 DUP (?) | ||
| 26 | VARSTRUC ENDS | ||
| 27 | |||
| 28 | WSWITCH EQU 1 ; Wide display during DIR | ||
| 29 | PSWITCH EQU 2 ; Pause (or Page) mode during DIR | ||
| 30 | ASWITCH EQU 4 ; ASCII mode during COPY | ||
| 31 | BSWITCH EQU 8 ; Binary mode during COPY | ||
| 32 | VSWITCH EQU 10H ; Verify switch | ||
| 33 | GOTSWITCH EQU 8000H ; Meta switch set if switch character encountered | ||