13 lines
360 B
C
Raw Normal View History

2016-05-03 03:05:11 +02:00
#include "memory.h"
void main(void)
{
2016-05-03 03:05:11 +02:00
void *payloadAddress = (void *)0x23F00000;
memcpy(payloadAddress, (void*)0x24F00000, *(u32 *)0x24FFFF04);
((void (*)(void))0xFFFF0830)(); //Clean and flush the entire DCache, then drain the write buffer
((void (*)(void))0xFFFF0AB4)(); //Flush the entire ICache
2016-05-03 03:05:11 +02:00
((void (*)())payloadAddress)();
}