Are local stack frames only relevant for re-entrant or recursive functions?
Is there a compiler option to turn off the use of ebp frames and still use PROC/ENDP?
Is there a compiler option to turn off the use of ebp frames and still use PROC/ENDP?
you can use the epilogue/prologue options (search board) to turn
off stack frame generation, but then you can't do normal masm-style
parameter access nor local variables. (Of course you can do these
things, but they must be done manually).
off stack frame generation, but then you can't do normal masm-style
parameter access nor local variables. (Of course you can do these
things, but they must be done manually).