Hi,all
Is it feasible to declare a function as inline and then realize this function using assembly code?But it will cause the compiler error.
Such as:
//Declartion:
inline int func(void);
main()
{
……
int a = func();
……
}
And func() is realized in another asm file.
Allen