start implementing actual shito

(also looks like the test bench in libui_sdl/main.cpp snuck in with the copyright update. shit)
This commit is contained in:
StapleButter
2018-09-15 02:47:34 +02:00
parent fea7955675
commit 0bfd019dc0
6 changed files with 63 additions and 0 deletions

View File

@ -356,6 +356,22 @@ void Stop()
SPU::Stop();
}
void Savestate(Savestate* file)
{
// NDS shito
ARM9->Savestate(file);
ARM7->Savestate(file);
CP15::Savestate(file);
// NDSCart
// GPU
// SPU
// SPI
// RTC
// wifi
}
bool LoadROM(const char* path, bool direct)
{
if (NDSCart::LoadROM(path, direct))