aboutsummaryrefslogtreecommitdiff
path: root/src/DSi_DSP.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DSi_DSP.cpp')
-rw-r--r--src/DSi_DSP.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/DSi_DSP.cpp b/src/DSi_DSP.cpp
index 328f01d..0525366 100644
--- a/src/DSi_DSP.cpp
+++ b/src/DSi_DSP.cpp
@@ -27,6 +27,9 @@
namespace DSi_DSP
{
+// not sure whether to not rather put it somewhere else
+u16 SNDExCnt;
+
Teakra::Teakra* TeakraCore;
bool SCFG_RST;
@@ -151,6 +154,8 @@ void Reset()
TeakraCore->Reset();
NDS::CancelEvent(NDS::Event_DSi_DSP);
+
+ SNDExCnt = 0;
}
bool IsRstReleased()
@@ -548,6 +553,21 @@ void Write32(u32 addr, u32 val)
Write16(addr, val & 0xFFFF);
}
+void WriteSNDExCnt(u16 val)
+{
+ // it can be written even in NDS mode
+
+ // mic frequency can only be changed if it was disabled
+ // before the write
+ if (SNDExCnt & 0x8000)
+ {
+ val &= ~0x2000;
+ val |= SNDExCnt & 0x2000;
+ }
+
+ SNDExCnt = val & 0xE00F;
+}
+
void Run(u32 cycles)
{
if (!IsDSPCoreEnabled())
@@ -587,6 +607,8 @@ void DoSavestate(Savestate* file)
file->Var16(&DSP_REP[1]);
file->Var16(&DSP_REP[2]);
file->Var8((u8*)&SCFG_RST);
+
+ // TODO: save the Teakra state!!!
}
}