5f32779ceb
- To override the last used boot mode on soft reboot, you only need to press A if you want to boot to the default option. Holding L(+payload button)/R is enough for the other modes. - Added version number to the config menu - Replaced the memsearch algorithm with a faster one - Integrated 3ds_injector from @yifanlu. This brings us region free and all the other FreeMultiPatcher patches. Other than that, you now have the possibility to display the currently booted NAND/FIRM in System Settings! - Rewritten most code for the config menu. You now can navigate to the first/last options with left and right. - You can now choose the 9.0 FIRM to be default in the config menu. This will essentially switch "no buttons" and L in both modes. - You can now choose the second emuNAND to be default in the config menu. This will essentially switch "B is not pressed" and "B is pressed". - When the second emuNAND is booted, it will persist like the other boot options on soft reboot - Bugfixes
27 lines
792 B
C
27 lines
792 B
C
/*
|
|
* patches.h
|
|
* by Reisyukaku / Aurora Wright
|
|
* Copyright (c) 2016 All Rights Reserved
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
/**************************************************
|
|
* Patches
|
|
**************************************************/
|
|
const u32 mpuPatch[3];
|
|
const u16 nandRedir[2];
|
|
const u16 sigPatch[2];
|
|
const u16 writeBlock[2];
|
|
|
|
/**************************************************
|
|
* Functions
|
|
**************************************************/
|
|
u8 *getProc9(u8 *pos, u32 size);
|
|
void getSigChecks(u8 *pos, u32 size, u32 *off, u32 *off2);
|
|
void *getReboot(u8 *pos, u32 size);
|
|
u32 getfOpen(u8 *proc9Offset, void *rebootOffset);
|
|
u16 *getFirmWrite(u8 *pos, u32 size);
|
|
void getLoader(u8 *pos, u32 size, u32 *loaderOffset, u32 *loaderSize); |