mirror of
https://github.com/LumaTeam/Luma3DS.git
synced 2026-02-22 01:44:38 +00:00
Update dlp client region free
Allows all dlp versions to have region free by patching necessary instruction after locating it with pattern.
This commit is contained in:
parent
67ad6d425a
commit
a7ce156f59
@ -818,7 +818,10 @@ void patchCode(u64 progId, u16 progVer, u8 *code, u32 size, u32 textSize, u32 ro
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const u8 pattern2[] = {
|
static const u8 pattern2[] = {
|
||||||
0xBB, 0xD1
|
0x20, 0x82, 0xa8, 0x7e, 0x00, 0x28, 0x00, 0xd0, 0x01, 0x20, 0xa0, 0x77
|
||||||
|
},
|
||||||
|
pattern3[] = {
|
||||||
|
0x42
|
||||||
},
|
},
|
||||||
patch2[] = {
|
patch2[] = {
|
||||||
0xC0, 0x46 // mov r8, r8
|
0xC0, 0x46 // mov r8, r8
|
||||||
@ -833,9 +836,11 @@ void patchCode(u64 progId, u16 progVer, u8 *code, u32 size, u32 textSize, u32 ro
|
|||||||
)) goto error;
|
)) goto error;
|
||||||
|
|
||||||
// Patch DLP client region check
|
// Patch DLP client region check
|
||||||
if (!patchMemory(code, textSize,
|
u8 *found = memsearch(code, pattern2, textSize, sizeof(pattern2));
|
||||||
pattern2,
|
|
||||||
sizeof(pattern2), 0,
|
if (!patchMemory(found, textSize,
|
||||||
|
pattern3,
|
||||||
|
sizeof(pattern3), 1,
|
||||||
patch2,
|
patch2,
|
||||||
sizeof(patch2), 1
|
sizeof(patch2), 1
|
||||||
)) goto error;
|
)) goto error;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user