Example of how to link C and Assembler functions and files

Dependencies:   mbed

add_c.c

Committer:
chris
Date:
2010-05-07
Revision:
0:faafbceeeede

File content as of revision 0:faafbceeeede:

extern "C" {

    int add_c(int c, int d) {
        return(c + d);
    }

}