26 lines
730 B
C
26 lines
730 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(void *pos, u32 size);
|
|
void getSignatures(void *pos, u32 size, u32 *off, u32 *off2);
|
|
void *getReboot(void *pos, u32 size);
|
|
u32 getfOpen(u8 *proc9Offset, void *rebootOffset);
|
|
u16 *getFirmWrite(void *pos, u32 size); |