Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在宏内部,我想声明一个字符串,其值等于宏参数的文本值。
例如,我想要类似的东西:
%macro foo 1 ;; some other stuff that might use %1 unquoted db "%1",0 %endmacro foo bar
宏扩展后应该导致装配:
db "bar",0
这将组装到带有尾随空值的字符串“bar”。