mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-17 05:39:16 +01:00
3b005e9a39
NOTE: this change (as well as the last update) do NOT AFFECT MOCHA CFW, they only affect my internal CBHC CFW which you can enable by just setting it to autoboot system menu which will give you full signature and region patching as well as this protection and re-applying patches on reloads; overall letting your wiiu and the menu run as they would normally
18 lines
413 B
C
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
|