parshell.asm

来自「DOS 源代码 系列之 command 源码」· 汇编 代码 · 共 37 行

ASM
37
字号
;/*
; *                      Microsoft Confidential
; *                      Copyright (C) Microsoft Corporation 1991
; *                      All Rights Reserved.
; */


PRINTF_CODE SEGMENT PUBLIC

ASSUME CS:PRINTF_CODE,DS:PRINTF_CODE,ES:PRINTF_CODE,SS:PRINTF_CODE

FARSW	 EQU   0	   ;CALL parser by near call
DATESW	 EQU   0	   ;NO date checking code
TIMESW	 EQU   0	   ;NO time checking code
FILESW	 EQU   1	   ;have to check for font file name
CAPSW	 EQU   0	   ;don't have to display file names
CMPXSW	 EQU   1	   ;have complex list in codepage syntax
DRVSW	 EQU   0	   ;just a drive is never legal
QUSSW	 EQU   0	   ;quoted string is not legal
NUMSW	 EQU   1	   ;need to check a numeric value occaisionally
KEYSW	 EQU   1	   ;oodles of keywords to check
SWSW	 EQU   1	   ;/status
VAL1SW	 EQU   1	   ;handle numeric ranges
VAL2SW	 EQU   1	   ;handle list of numbers
VAL3SW	 EQU   1	   ;handle list of strings
BASESW	 EQU   1	   ;use DS addressability for PSDATA.INC variables
;INCSW	  EQU	1

include  version.inc
INCLUDE  PARSE.ASM

PUBLIC	 SYSPARSE

PRINTF_CODE ENDS

END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?