mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-17 16:42:41 +00:00
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:
parent
e4af896638
commit
cc38e72dc3
12 changed files with 137 additions and 24 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue