;// Debugging flag and macros
OPTION CASEMAP:NONE
;// debug flags
IF DEBUG
DEBUG_FILE = 1
ELSE
DEBUG_FILE = 0
ENDIF
....
以上是部分源码,不知道为什么DEBUG这个无法识别,我有尝试在DEBUG前面强行的设置“DEBUG = 1”或者 “DEBUG = 0”, 可以正常编译,但是编译出来的东西不对。
错误如下:
1>Assembling...
1> Assembling: .\test.asm
1>.\dbg.inc(6) : error A2006: undefined symbol : DEBUG
1>.\dbg.inc(79) : error A2006: undefined symbol : DEBUG
1>.\test.asm(75) : error A2006: undefined symbol : DEBUG
1> DBGSTART(1): Macro Called From
1> .\test.asm(75): Main Line Code
1>.\test.asm(93) : error A2006: undefined symbol : DEBUG
------解决方案--------------------
定义标记,不是用 DEBUG=0/1 的吧,只要有定义或设置了它的,IFDEF DEBUG 即为 TRUE 。
除了在程序里进行定义外,也可以在命令行上进行,如 ml /c /coff /D DEBUG yourasm.asm