📄 idmac.inc
字号:
;***
; 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -