mirror of
https://github.com/AuroraWright/SafeA9LHInstaller.git
synced 2025-06-26 05:32:45 +00:00
15 lines
230 B
C
Executable File
15 lines
230 B
C
Executable File
#include "types.h"
|
|
|
|
void main(void)
|
|
{
|
|
vu32 *arm11 = (vu32 *)0x1FFFFFF8;
|
|
|
|
//Clear ARM11 entrypoint
|
|
*arm11 = 0;
|
|
|
|
//Wait for the entrypoint to be set
|
|
while(!*arm11);
|
|
|
|
//Jump to it
|
|
((void (*)())*arm11)();
|
|
} |