• AEABI Library: Floating Point functions
    How is floating point overflow handled in aeabi library functions such as __aeabi_fadd? Does the function return a pre-defined value? Or does it update any registers?
  • AEABI Library: Floating Point functions
    How is floating point overflow handled in aeabi library functions such as __aeabi_fadd? Does the function return a pre-defined value? Or does it update any registers?
  • What's the difference between function point below!?
    My code void func1(void) { printf("In FUNC1(%d)\n", 1); } void func2(void) { printf("In FUNC2(%d)\n", 2); } code void (*ff[])()={func1,func2}; void main(void) { SCON = 0x50; TMOD |= 0x20; TH1...
  • about the pointer point to the function
    Hi: I want to build an array that contain the pointer of some function in our program. a simulated example is as below //claim two function int x(void); int y (void); main() { int *(p)(void...
  • about the pointer point to the function
    Hi: I want to build an array that contain the pointer of some function in our program. a simulated example is as below //claim two function int x(void); int y (void); main() { int *(p)(void...