Function Use

To call a function, declare the function prototype in the .c file:

  int my_asm_func(int a, int b);  

The function call is as for any regular C function call. For example:

  my_asm_func(5, 2);