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.
i got the answer, simply cut and paste dosnt work we need to add proc and endp instead of end and name of the function.