Hi,
Under CW 5.0, I have declared a simple function pointer:
void (*fp) ();
the call:
fp = &MCU_init; // just an example
In simulation, fp = the address of MCU_init, but does not execute the function.
I am using the small memory model. I also used a typedef, but still no luck.
Is it a compiler setting?