mirror of
https://github.com/Gericom/FastVideoDSPlayer.git
synced 2025-06-19 02:55:34 -04:00
20 lines
314 B
C
20 lines
314 B
C
#include <nds.h>
|
|
#include <string.h>
|
|
#include "fat/ff.h"
|
|
#include "fat.h"
|
|
|
|
FATFS gFatFs;
|
|
|
|
void fat_init(void)
|
|
{
|
|
memset(&gFatFs, 0, sizeof(gFatFs));
|
|
|
|
if (isDSiMode())
|
|
f_mount(&gFatFs, "sd:", 1); //mount dsi sd card
|
|
}
|
|
|
|
void fat_mountDldi(void)
|
|
{
|
|
f_mount(&gFatFs, "fat:", 1);
|
|
}
|