aboutsummaryrefslogtreecommitdiff
path: root/src/DSi.h
diff options
context:
space:
mode:
authorArisotura <thetotalworm@gmail.com>2022-01-07 14:00:43 +0100
committerGitHub <noreply@github.com>2022-01-07 14:00:43 +0100
commite665e25bd3ea4b9af932e182b1c93e77b762ccb0 (patch)
tree06b5ceb336e42868806113cbf1f45add2b56a3e8 /src/DSi.h
parentc4cd9da674bcfb8dca89086ce3ffa2d3b03438eb (diff)
Custom path support (#1333)
also including: * getting rid of shitty strings * all new, cleaner ROM handling code * base for DSi savestates * GBA slot addons (for now, memory cart)
Diffstat (limited to 'src/DSi.h')
-rw-r--r--src/DSi.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/DSi.h b/src/DSi.h
index 1236527..93f46eb 100644
--- a/src/DSi.h
+++ b/src/DSi.h
@@ -39,8 +39,6 @@ extern u64 ConsoleID;
extern DSi_SDHost* SDMMC;
extern DSi_SDHost* SDIO;
-extern FILE* SDMMCFile;
-
const u32 NWRAMSize = 0x40000;
extern u8* NWRAM_A;
@@ -59,14 +57,14 @@ bool Init();
void DeInit();
void Reset();
+void DoSavestate(Savestate* file);
+
void SetupDirectBoot();
void SoftReset();
bool LoadBIOS();
bool LoadNAND();
-void CloseDSiNAND();
-
void RunNDMAs(u32 cpu);
void StallNDMAs();
bool NDMAsInMode(u32 cpu, u32 mode);