liberis
|
00001 /* 00002 liberis -- A set of libraries for controlling the NEC PC-FX 00003 00004 Copyright (C) 2011 Alex Marshall "trap15" <trap15@raidenii.net> 00005 00006 # This code is licensed to you under the terms of the MIT license; 00007 # see file LICENSE or http://www.opensource.org/licenses/mit-license.php 00008 */ 00009 00014 #ifndef _LIBERIS_BKUPMEM_H_ 00015 #define _LIBERIS_BKUPMEM_H_ 00016 00017 #include <eris/types.h> 00018 00025 void eris_bkupmem_set_access(int internal, int external); 00034 void eris_bkupmem_read(int ext, u8 *buf, u32 addr, u32 len); 00043 void eris_bkupmem_write(int ext, u8 *buf, u32 addr, u32 len); 00044 00045 #endif 00046