I think no problem with starting address(at 0xC000) for user application. I think the problem is I don't know how to jump to the user application correctly. The chip is MPC5607B. I use S32DS. The code snippet is shown as below.
void jump_to_app(void)
{
__asm__(" " " e_b 0x0000C000" " ");
}
It doesn't working correctly. I am not familiar with powerpc assembly language. How to write it?
Thanks for your attention!