1

在宏内部,我想声明一个字符串,其值等于宏参数的文本值。

例如,我想要类似的东西:

%macro foo 1
;; some other stuff that might use %1 unquoted
db "%1",0
%endmacro

foo bar

宏扩展后应该导致装配:

db "bar",0

这将组装到带有尾随空值的字符串“bar”。

4

0 回答 0