Substitutes for x86 assembly 'call' instruction?
问题 What are some alternatives to the x86 call instruction? Maybe something like a push of the return address then a jump? Also is their a command for obtaining the current position in memory? 回答1: CALL actually does this for you for example CALL my_func would do something like push ret_address jmp my_func and a subsequent RET call would just use the address you just pushed to JMP back in a sense. Is there a specific reason that you don't want to use CALL or is it not available for you? For