How can I JMP to a specific address in C?
I want to use
goto 0x10080000
This is not working, is there other way I can change the a
In GCC you can use computed goto. I didn't try it myself, but it should work like this:
void *address = 0x10080000; ... goto *address;