take this shit further

This commit is contained in:
Arisotura
2019-06-17 13:24:37 +02:00
parent d4dd97638d
commit bedc0220fc
3 changed files with 222 additions and 16 deletions

View File

@ -57,16 +57,16 @@ u32 NWRAMStart[2][3];
u32 NWRAMEnd[2][3];
u32 NWRAMMask[2][3];
DSi_SD* SDMMC;
DSi_SD* SDIO;
DSi_SDHost* SDMMC;
DSi_SDHost* SDIO;
bool Init()
{
if (!DSi_I2C::Init()) return false;
SDMMC = new DSi_SD(0);
SDIO = new DSi_SD(1);
SDMMC = new DSi_SDHost(0);
SDIO = new DSi_SDHost(1);
return true;
}