mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
15 lines
387 B
C
15 lines
387 B
C
|
// Copyright 2010 Joseph Jordan <joe.ftpii@psychlaw.com.au>
|
||
|
// This code is licensed to you under the terms of the GNU GPL, version 2;
|
||
|
// see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
|
||
|
|
||
|
#ifndef __RUNTIMEIOSPATCH_H
|
||
|
#define __RUNTIMEIOSPATCH_H
|
||
|
|
||
|
#include <gccore.h>
|
||
|
|
||
|
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
|
||
|
|
||
|
u32 IOSPATCH_Apply();
|
||
|
|
||
|
#endif
|