add support for SPI shutdown, btw
This commit is contained in:
parent
0aa3434ec7
commit
495d0ba12d
|
@ -29,6 +29,7 @@
|
|||
#include "SPI.h"
|
||||
#include "RTC.h"
|
||||
#include "Wifi.h"
|
||||
#include "Platform.h"
|
||||
|
||||
|
||||
namespace NDS
|
||||
|
@ -342,6 +343,13 @@ void Reset()
|
|||
Wifi::Reset();
|
||||
}
|
||||
|
||||
void Stop()
|
||||
{
|
||||
printf("Stopping: shutdown\n");
|
||||
Platform::StopEmu();
|
||||
SPU::Stop();
|
||||
}
|
||||
|
||||
void LoadROM(const char* path, bool direct)
|
||||
{
|
||||
Reset();
|
||||
|
|
|
@ -104,6 +104,7 @@ extern u8 MainRAM[0x400000];
|
|||
bool Init();
|
||||
void DeInit();
|
||||
void Reset();
|
||||
void Stop();
|
||||
|
||||
void LoadROM(const char* path, bool direct);
|
||||
void LoadBIOS();
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
namespace Platform
|
||||
{
|
||||
|
||||
void StopEmu();
|
||||
|
||||
void* Thread_Create(void (*func)());
|
||||
void Thread_Free(void* thread);
|
||||
void Thread_Wait(void* thread);
|
||||
|
|
|
@ -365,7 +365,7 @@ u8 Read()
|
|||
}
|
||||
|
||||
void Write(u8 val, u32 hold)
|
||||
{printf("SPI powerman %02X %d\n", val, hold?1:0);
|
||||
{
|
||||
if (!hold)
|
||||
{
|
||||
Hold = 0;
|
||||
|
@ -395,11 +395,11 @@ void Write(u8 val, u32 hold)
|
|||
switch (regid)
|
||||
{
|
||||
case 0:
|
||||
if (val & 0x40) printf("DS shutdown\n");
|
||||
printf("power %02X\n", val);
|
||||
if (val & 0x40) NDS::Stop(); // shutdown
|
||||
//printf("power %02X\n", val);
|
||||
break;
|
||||
case 4:
|
||||
printf("brightness %02X\n", val);
|
||||
//printf("brightness %02X\n", val);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -114,6 +114,11 @@ void Reset()
|
|||
NDS::ScheduleEvent(NDS::Event_SPU, true, 1024*16, Mix, 16);
|
||||
}
|
||||
|
||||
void Stop()
|
||||
{
|
||||
memset(OutputBuffer, 0, 2*OutputBufferSize*2);
|
||||
}
|
||||
|
||||
|
||||
void SetBias(u16 bias)
|
||||
{
|
||||
|
|
|
@ -25,6 +25,7 @@ namespace SPU
|
|||
bool Init();
|
||||
void DeInit();
|
||||
void Reset();
|
||||
void Stop();
|
||||
|
||||
void SetBias(u16 bias);
|
||||
|
||||
|
|
|
@ -44,6 +44,9 @@
|
|||
#endif
|
||||
|
||||
|
||||
void Stop();
|
||||
|
||||
|
||||
namespace Platform
|
||||
{
|
||||
|
||||
|
@ -70,6 +73,12 @@ u8 PacketBuffer[2048];
|
|||
#define NIFI_VER 1*/
|
||||
|
||||
|
||||
void StopEmu()
|
||||
{
|
||||
Stop();
|
||||
}
|
||||
|
||||
|
||||
void* Thread_Create(void (*func)())
|
||||
{
|
||||
ThreadData* data = new ThreadData;
|
||||
|
|
|
@ -272,6 +272,9 @@ void Stop()
|
|||
uiMenuItemDisable(MenuItem_Pause);
|
||||
uiMenuItemDisable(MenuItem_Reset);
|
||||
uiMenuItemSetChecked(MenuItem_Pause, 0);
|
||||
|
||||
memset(ScreenBuffer, 256*384*4, 0);
|
||||
uiAreaQueueRedrawAll(MainDrawArea);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue