previous | start | next

IA32 Assembly for: Function Calls (1)

int max(int a, int b);

int f(int x, int y)
{
  int m;

  m = max(x,y);

  return m * m;
}
   

To call max, assembly code for function f must



previous | start | next