I want the program to jump to a specific address in memory and continue execution from that address. I thought about using goto but I don\'t have a label rather
goto
This is what I am using for my bootstrap loader(MSP430AFE253,Compiler = gcc,CodeCompeserStudio);
#define API_RESET_VECT 0xFBFE #define JUMP_TO_APP() {((void (*)()) (*(uint16_t*)API_RESET_VECT)) ();}