• External Funtion Type
    This works: extern char Fn1( char, char ); extern char Fn2( char, char ); extern char Fn3( char, char ); This causes a lot of linker errors. typedef char FnT( char, char ); extern FnT Fn1,Fn2,Fn3;...
  • External Funtion Type
    This works: extern char Fn1( char, char ); extern char Fn2( char, char ); extern char Fn3( char, char ); This causes a lot of linker errors. typedef char FnT( char, char ); extern FnT Fn1,Fn2,Fn3;...
  • About C51 bank funtion call ?
    Two funtiom. One is char A(char *str1,char *str1),this funtion is in BANK 6. main() is in bank 1; Now main() call A(Astr1,Astr2) have some error. Seem as some parameter has't been pass OK. How...
  • About C51 bank funtion call ?
    Two funtiom. One is char A(char *str1,char *str1),this funtion is in BANK 6. main() is in bank 1; Now main() call A(Astr1,Astr2) have some error. Seem as some parameter has't been pass OK. How...
  • is there inline funtion in keil c51
    i want to use inline function like in c++ language. how to do in keil c or it's not support? use #define to simulate ?