mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 14:49:53 -06:00
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:
16
src/NDS.cpp
16
src/NDS.cpp
@ -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))
|
||||
|
Reference in New Issue
Block a user