haxchi/dsrom/iosu_patcher/arm_kernel/source/getbins.h
FIX94 0ad99123db -use same iosu patcher for both haxchi and cbhc to allow haxchi to benefit from it
-added new config option to haxchi, "sysmenu" which will relaunch you into the system menu with signature, region patches and everything else that cbhc patches
-small logic correction in the iosu patcher
2016-12-19 04:14:47 +01:00

18 lines
413 B
C

#ifndef _GETBINS_H_
#define _GETBINS_H_
#define titleprot_addr 0x0510D984
#define wupserver_addr 0x0510E570
#define titleprot_phys (titleprot_addr - 0x05100000 + 0x13D80000)
#define wupserver_phys (wupserver_addr - 0x05100000 + 0x13D80000)
const unsigned char *get_titleprot_bin();
unsigned int get_titleprot_bin_len();
const unsigned char *get_wupserver_bin();
unsigned int get_wupserver_bin_len();
#endif