SPRU514Z July 2001 – October 2023 SM320F28335-EP
extern "C"{
extern int asmfunc(int a); /* declare external asm function */
int gvar = 0; /* define global variable */
}
void main()
{
int i = 5;
i = asmfunc(i); /* call function normally */
}