大会中的#define替代品?

时间:2015-01-07 22:20:38

标签: assembly x86 nasm

汇编(或至少是NASM)是否具有与C / C ++ #define等效的内容?

我想做这样的事情:

#define i [ebp - 4]

1 个答案:

答案 0 :(得分:2)

NASM:

%define i [ebp - 4]

来源:http://www.nasm.us/doc/nasmdoc4.html

编辑: 也许“equ”对你来说也很有趣。看看这个帖子: What's the difference between %define and equ in NASM?