• 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 ?
  • 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...
  • Whats happening here ??
    Hallo everybody, got myself another problem.... not exactly a problem... i think The thing is i would like to know whats happening in this output: printf("AIN[%d][%d] = %u.%.3u V\n",m,n,(int...
  • WHAT WILL HAPPEN WHEN INTERRUPT OCCUS IN 8051?
    Can please tell me what will happen when interrupt occurs in 8051?? I have gone through books but still i am not clear in the following.. 1. Will INT disable all inerrupts before jumping to ISR...