idmac.inc
来自「MS DOS 6.0 操作系统源码完整版,对于研制操作系统结构,构建个人的操作系」· INC 代码 · 共 45 行
INC
45 行
;***
; IDMAC.INC - 1-Apr-87 - Internal Debugging Macros
;***
.XLIST
;***
;
; Copyright <C> 1986, Microsoft Corporation
;
;Purpose:
; To provide a simple, consistent interface to internal debugging
; code via macros; these macros allow minimal muddying of source
; code, yet provide the ability to make runtime assertion checks,
; and give useful status information on failure.
;
;
;******************************************************************************
IDMAC_INC = -1
DbHalt MACRO seg,message
ENDM
DbAssertRel MACRO parm1,arel,parm2,seg,message
ENDM
DbAssertRelB MACRO parm1,arel,parm2,seg,message
ENDM
DbAssertFlags MACRO arel,seg,message
ENDM
DbAssertTst MACRO parm1,arel,parm2,seg,message
ENDM
DbChk MACRO name,parms
ENDM
DbPub MACRO ep
ENDM
DJMP MACRO op,parm1,parm2
op parm1 parm2
ENDM
DbFarPrologue MACRO
ENDM
DbFarEpilogue MACRO
ENDM
.LIST
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?