mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-05 19:25:12 +01:00
20 lines
534 B
C
20 lines
534 B
C
/*
|
|
mini - a Free Software replacement for the Nintendo/BroadOn IOS.
|
|
PowerPC ELF file loading
|
|
|
|
Copyright (C) 2008, 2009 Hector Martin "marcan" <marcan@marcansoft.com>
|
|
Copyright (C) 2009 Andre Heider "dhewg" <dhewg@wiibrew.org>
|
|
|
|
# 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 __POWERPC_ELF_H__
|
|
#define __POWERPC_ELF_H__
|
|
|
|
int powerpc_boot_file(const char *path);
|
|
int powerpc_boot_mem(const u8 *addr, u32 len);
|
|
|
|
#endif
|
|
|