有什么方法可以为 nasm 中的例程生成以下页眉和页脚,而无需在每次定义新例程时都显式编码它们?
标题:
push ebp
mov ebp, esp ; Entry code - set up ebp and esp
例行程序的主体
页脚:
mov esp, ebp ; Function exit code
pop ebp
ret
我正在寻找类似的东西:
some command that generates entry code
body of the routine
some command that generates exit code