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
I Propos this code:
asm( "LDR R0,=0x0a0000\n\t" /* Or 0x0a0000 for the base Addr. */ "LDR R0, [R0, #4]\n\t" /* Vector+4 for PC */ "BX R0" );