2006-07-09 11:47:17 +00:00
|
|
|
/*
|
2006-12-01 22:36:54 +00:00
|
|
|
io_m3sd.h by SaTa.
|
|
|
|
|
|
|
|
Hardware Routines for reading a compact flash card
|
|
|
|
using the GBA Movie Player
|
|
|
|
|
|
|
|
This software is completely free. No warranty is provided.
|
|
|
|
If you use it, please give me credit and email me about your
|
|
|
|
project at chishm@hotmail.com
|
|
|
|
|
|
|
|
See gba_nds_fat.txt for help and license details.
|
2006-07-09 11:47:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef IO_M3SD_H
|
|
|
|
#define IO_M3SD_H
|
|
|
|
|
|
|
|
#include "disc_io.h"
|
|
|
|
|
2006-12-01 22:36:54 +00:00
|
|
|
u16 M3_SetChipReg(u32 Data);
|
|
|
|
void M3_SelectSaver(u8 Bank);
|
|
|
|
|
2006-07-09 11:47:17 +00:00
|
|
|
// export interface
|
2006-12-01 22:36:54 +00:00
|
|
|
extern LPIO_INTERFACE M3SD_GetInterface(void) ;
|
2006-07-09 11:47:17 +00:00
|
|
|
|
2006-12-01 22:36:54 +00:00
|
|
|
#endif
|