We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.
Cut and paste.
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.