* I Forgot the added file in previous rev.

This commit is contained in:
Cyan 2012-07-16 16:11:26 +00:00
parent a8f136335f
commit 9c38fd50e2
2 changed files with 37 additions and 1 deletions

View File

@ -2,7 +2,7 @@
<app version="1"> <app version="1">
<name> USB Loader GX</name> <name> USB Loader GX</name>
<coder>USB Loader GX Team</coder> <coder>USB Loader GX Team</coder>
<version>3.0 r1195</version> <version>3.0 r1196</version>
<release_date>201207161531</release_date> <release_date>201207161531</release_date>
<!-- // remove this line to enable arguments <!-- // remove this line to enable arguments
<arguments> <arguments>

View File

@ -0,0 +1,36 @@
/****************************************************************************
* Copyright (C) 2012 Dimok
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef DEVO_CONFIG_H_
#define DEVO_CONFIG_H_
#define LAUNCH_DEVO() ((void(*)(void))loader_bin)()
#define DEVO_SIG 0x3EF9DB23
#define DEVO_VERSION 0x00000100
// Devolution
typedef struct _DEVO_CFG
{
u32 signature; //0x3EF9DB23
u16 version; //0x00000100
u16 device_signature;
u32 memcard_cluster;
u32 disc1_cluster;
u32 disc2_cluster;
} DEVO_CGF;
#endif