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();