• Pointer MSpace Help
    I am trying to figure out how the 80C652 processor determines the memory space on pointers. Is there a way to store the pointer in 3 bytes (far doesn't work). When I pass a variable via "TEXT HERE...
  • Pointer MSpace Help
    I am trying to figure out how the 80C652 processor determines the memory space on pointers. Is there a way to store the pointer in 3 bytes (far doesn't work). When I pass a variable via "TEXT HERE...
  • function pointer
    hi all, do you think i can work around function pointers as following: extern void a(void); extern void b(void); void fptr(void *fp) { if (fp == a) a(); if (fp == b) b(); } void...
  • Function pointers
    Warning: Not directly related with Keil... After the messages on the pointer and function pointer usage, I read the application note 129 and confused on the syntax of calling functions using funct...
  • Function pointers
    Hello all, We have a strange problem. During execution of a function, the control goes to some different line in a different function, without making a call it... I will try to explain the scenario...