Inline Assembly - jmp

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Inline Assembly - jmp

1,742 Views
Rocko
Contributor I
Hi,
 
I have loaded my App into a defined section of Flash.  I now need to run the asm_startmeup function to run the App.  The code that has loaded the App doesn't regonise asm_startmeup.  If I know the address of asm_startmeup how do I jump to it and run it?
 
HCS12 would be something like this....(I think):
 
 asm void boot_StartApp(void)

    jmp [0x00010000]
   
}
 
Cheers
 
R
Labels (1)
0 Kudos
1 Reply

444 Views
Rocko
Contributor I
remove the brackets - jmp 0x00010000 - seems to work!
0 Kudos