汇编(或至少NASM)是否具有C /
c#define的等价物?
我想做这样的事情:
#define i [ebp - 4]
最佳答案 NASM:
%define i [ebp - 4]
资料来源:http://www.nasm.us/doc/nasmdoc4.html
编辑:
也许“equ”对你来说也很有趣.看看这个帖子:
What’s the difference between %define and equ in NASM?
汇编(或至少NASM)是否具有C /
c#define的等价物?
我想做这样的事情:
#define i [ebp - 4]
最佳答案 NASM:
%define i [ebp - 4]
资料来源:http://www.nasm.us/doc/nasmdoc4.html
编辑:
也许“equ”对你来说也很有趣.看看这个帖子:
What’s the difference between %define and equ in NASM?