DSPLLE: Setting breakpoints and stepping through code now works in the (still rather basic) DSP debugger. Decided not to share the breakpoints code between PPC and DSP because it can be done much more efficiently for the DSP case due to the very limited memory space.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3575 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2009-06-28 17:18:52 +00:00
parent e4af896638
commit cc38e72dc3
12 changed files with 137 additions and 24 deletions

View file

@ -21,7 +21,7 @@
wxString CRegTable::GetValue(int row, int col)
{
if (row < 36) // 32 "normal" regs
if (row < 32) // 32 "normal" regs
{
switch (col)
{
@ -46,7 +46,7 @@ void CRegTable::UpdateCachedRegs()
m_CachedCounter = g_dsp.step_counter;
for (int i = 0; i < 36; ++i)
for (int i = 0; i < 32; ++i)
{
m_CachedRegHasChanged[i] = (m_CachedRegs[i] != g_dsp.r[i]);
m_CachedRegs[i] = g_dsp.r[i];