Hi all,
Is there any way to jump some flash locations inside a code. eg:
Starting location of flash
0x00000050 int main() 0x00000054 { 0x00000058 printf("Hai"); 0x0000005C Jumpt to flash address for 2nd printf 0x00075000 printf("Bye") ------------ }
How to implement this type of Flash location jumping in Keil compiler.Is it possible to jump?? Kindly reply...
Aha. So you want to jump into arbitrary (?) code disregarding the calling convention, stack etc.? Sounds like a plan to me. Don't do it unless you need to switch between programs (bootload -> application) !