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
Inline assembly instruction should work too:
asm("jump 0x10080000");