drv.inc
来自「Microsoft MS-DOS6.0 完整源代码」· INC 代码 · 共 39 行
INC
39 行
;*
;* CW : Character Windows
;*
;* drv.inc : Main Driver Header
;*****************************************************************************
memM = 1
?WIN = 0
?PLM = 1
?TF = 1
?DF = 1
?NODATA = 1
;* standard macros
include cmacros.inc
include std.inc
;* installable driver interface
include indrv.inc
;*****************************************************************************
;* Segments
;* all driver code goes in the DRV segment (use drvOffset for offsets)
createSeg DRV_FIXED,DRV,WORD,PUBLIC,CODE ;* driver
;*****************************************************************************
;* Misc Macros
;********** NonStandard **********
;* entry: symbol = symbol to define as non-standard ???_NonDefault
NonStandard MACRO symbol
symbol&_NonDefault = 1
ENDM
;*****************************************************************************
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?