Exemple #1
0
bool InitFS()
{
	InitializeNandCrypto();
	int res = 1;
	if(f_mount(&fs[0], "0:", 0) != FR_OK) res = 0;
	if(f_mount(&fs[1], "1:", 0) != FR_OK) res = 0;
	if(f_mount(&fs[2], "2:", 0) != FR_OK);
	return res;
}
Exemple #2
0
bool InitFS()
{
	InitializeNandCrypto();
	return f_mount(&fs, "0:", 0) == FR_OK;
}