mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-04 21:45:32 +01:00
27 lines
403 B
C
27 lines
403 B
C
|
#include <string.h>
|
||
|
|
||
|
#include "sdmmc.h"
|
||
|
|
||
|
/* Initialize the SDMMC1 (SD card) controller */
|
||
|
void sdmmc1_init(void)
|
||
|
{
|
||
|
/* TODO */
|
||
|
}
|
||
|
|
||
|
/* Initialize the SDMMC2 (GC asic) controller */
|
||
|
void sdmmc2_init(void)
|
||
|
{
|
||
|
/* TODO */
|
||
|
}
|
||
|
|
||
|
/* Initialize the SDMMC3 (unused) controller */
|
||
|
void sdmmc3_init(void)
|
||
|
{
|
||
|
/* TODO */
|
||
|
}
|
||
|
|
||
|
/* Initialize the SDMMC4 (eMMC) controller */
|
||
|
void sdmmc4_init(void)
|
||
|
{
|
||
|
/* TODO */
|
||
|
}
|