i have a main.c for example
int main()
{
int x=1,y=2;
fun(x,y);
add(x,y);
}
where the fun and add function are written in assembly in different .s files how do i combine both the function in one single .s files.