mirror of
https://github.com/wiiu-env/wiiu-nanddumper-payload.git
synced 2024-11-19 01:49:26 +01:00
14 lines
238 B
C
14 lines
238 B
C
|
#ifndef _FS_CONFIG_H
|
||
|
#define _FS_CONFIG_H
|
||
|
|
||
|
typedef struct {
|
||
|
int dump_slc;
|
||
|
int dump_slccmpt;
|
||
|
int dump_mlc;
|
||
|
int dump_otp;
|
||
|
int dump_seeprom;
|
||
|
char otp_buffer[0x400];
|
||
|
char seeprom_buffer[0x200];
|
||
|
} fs_config;
|
||
|
|
||
|
#endif
|