This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

arm assembly

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.