我正在尝试if
在 MASM 中使用宏,但我不断从 MASM 汇编程序中收到以下错误消息:Syntax error in control flow directive.
我仍然不确定这里的语法错误是什么:MASM 中 if 语句的正确语法是什么?
.686p
.model flat,stdcall
.stack 2048
.data
X byte 1;
ExitProcess proto, exitcode:dword
.code
start:
.IF(x > 1): ; "syntax error in control-flow directive"
mov ah, x;
.ENDIF
invoke ExitProcess, 0
end start