Inline assembly language

前端 未结 1 1560
梦如初夏
梦如初夏 2020-12-12 03:51

I am doing 64 bit migration and i need to port inline assembly code to cpp Here is he code

void ExternalFunctionCall::callFunction(ArgType resultType, void*          


        
相关标签:
1条回答
  • 2020-12-12 04:01

    push puts its operand on the stack, as well as decrementing the stack pointer.

    If you looked at the stack pointer plus 1 (1($sp)), you should see the value (but if you wanted it back, you'd typically use pop).

    0 讨论(0)
提交回复
热议问题