I want to restart the program counter at 0x0000 when leaving a function, I already try the following solutions, but the compiler always returns me a syntax error : code void (*pReset) (void) = 0x00; extern code void (*pReset) (void) = 0x00;
Thanks for Your answer, when Itry the statment : void (*pReset) (void) = 0x00; The compiler compiles with no error, but I'm not certain if it is what I want to do.