/**********************************************************
 * A simple example to illustrate C and assembly language *
 * interface. The test function is written in assembly    *
 * language (in file testex_a.asm).                       *
 **********************************************************/
#include <stdio.h>
int main(void)
{
      int     x=25, y=70;
      int     value;
      extern  int test(int, int, int);

      value = test (x, y, 5);
      printf("result = %d\n", value);
      return 0;
}
