mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-14 12:25:15 +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
|