mirror of
https://github.com/wiiu-env/libfat.git
synced 2024-11-22 18:09:17 +01:00
24 lines
381 B
C
24 lines
381 B
C
/*
|
|
io_efa2.h by CyteX
|
|
|
|
Based on io_mpfc.h by chishm (Michael Chisholm)
|
|
|
|
Hardware Routines for reading the NAND flash located on
|
|
EFA2 flash carts
|
|
|
|
Used with permission from Cytex.
|
|
*/
|
|
|
|
#ifndef IO_EFA2_H
|
|
#define IO_EFA2_H
|
|
|
|
// 'EFA2'
|
|
#define DEVICE_TYPE_EFA2 0x32414645
|
|
|
|
#include "disc_io.h"
|
|
|
|
// export interface
|
|
extern const IO_INTERFACE _io_efa2;
|
|
|
|
#endif // define IO_EFA2_H
|