This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMDSEVM6678: Jump address

Part Number: TMDSEVM6678

Tool/software:

Hello, I am trying to load a binary file written in nor memory, upload it to RAM, and then run it. 
I confirmed writing to memory, but there is a problem moving to the written address and executing it.

When I check the PC register, it does not move to the desired address. Could you please tell me how?

This is what I tried.

 uint8_t* appBuffer = (uint8_t*)0x0C000000;

void (*appEntry)() = (void (*)())appBuffer;

appEntry();