previous | start | next

IA32 Instruction: call

The call instruction

      call function_address
   
  1. pushes the address of the next instruction (the return address) onto the stack, and
  2. sets the value of the %eip register to the function address specified by the call operand

The second action is what one means by "jumps" to the function address.



previous | start | next