diff options
Diffstat (limited to 'v4.0/src/CMD/MODE/PARSHELL.ASM')
| -rw-r--r-- | v4.0/src/CMD/MODE/PARSHELL.ASM | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/v4.0/src/CMD/MODE/PARSHELL.ASM b/v4.0/src/CMD/MODE/PARSHELL.ASM new file mode 100644 index 0000000..ed63d1a --- /dev/null +++ b/v4.0/src/CMD/MODE/PARSHELL.ASM | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | |||
| 2 | PRINTF_CODE SEGMENT PUBLIC | ||
| 3 | |||
| 4 | ASSUME CS:PRINTF_CODE,DS:PRINTF_CODE,ES:PRINTF_CODE,SS:PRINTF_CODE | ||
| 5 | |||
| 6 | FARSW EQU 0 ;CALL parser by near call | ||
| 7 | DATESW EQU 0 ;NO date checking code | ||
| 8 | TIMESW EQU 0 ;NO time checking code | ||
| 9 | FILESW EQU 1 ;have to check for font file name | ||
| 10 | CAPSW EQU 0 ;don't have to display file names | ||
| 11 | CMPXSW EQU 1 ;have complex list in codepage syntax | ||
| 12 | DRVSW EQU 0 ;just a drive is never legal | ||
| 13 | QUSSW EQU 0 ;quoted string is not legal | ||
| 14 | NUMSW EQU 1 ;need to check a numeric value occaisionally | ||
| 15 | KEYSW EQU 1 ;oodles of keywords to check | ||
| 16 | SWSW EQU 1 ;/status | ||
| 17 | VAL1SW EQU 1 ;handle numeric ranges | ||
| 18 | VAL2SW EQU 1 ;handle list of numbers | ||
| 19 | VAL3SW EQU 1 ;handle list of strings | ||
| 20 | BASESW EQU 1 ;use DS addressability for PSDATA.INC variables | ||
| 21 | ;INCSW EQU 1 | ||
| 22 | |||
| 23 | INCLUDE PARSE.ASM | ||
| 24 | |||
| 25 | PUBLIC SYSPARSE | ||
| 26 | |||
| 27 | PRINTF_CODE ENDS | ||
| 28 | |||
| 29 | END | ||
| 30 | \ No newline at end of file | ||