mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
17 lines
275 B
C
17 lines
275 B
C
#ifndef _RUNTIMEIOSPATCH_H_
|
|
#define _RUNTIMEIOSPATCH_H_
|
|
|
|
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
u32 runtimePatchApply(bool wii, bool sciifii, bool vwii);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|