新しいルーチンを定義するたびに明示的にコーディングする必要なく、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