mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-22 16:19:19 +01:00
25 lines
359 B
C
25 lines
359 B
C
|
#ifndef _NAND_H_
|
||
|
#define _NAND_H_
|
||
|
|
||
|
/* 'NAND Device' structure */
|
||
|
typedef struct {
|
||
|
/* Device name */
|
||
|
char *name;
|
||
|
|
||
|
/* Mode value */
|
||
|
u32 mode;
|
||
|
|
||
|
/* Un/mount command */
|
||
|
u32 mountCmd;
|
||
|
u32 umountCmd;
|
||
|
} nandDevice;
|
||
|
|
||
|
|
||
|
/* Prototypes */
|
||
|
s32 Nand_Mount(nandDevice *);
|
||
|
s32 Nand_Unmount(nandDevice *);
|
||
|
s32 Nand_Enable(nandDevice *);
|
||
|
s32 Nand_Disable(void);
|
||
|
|
||
|
#endif
|