mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-25 23:37:57 +00:00
one file missing in sconstruct
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3002 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
10989fda06
commit
d939afdcf2
@ -16,6 +16,7 @@ files = [
|
|||||||
"DSPInterpreter.cpp",
|
"DSPInterpreter.cpp",
|
||||||
"DSPJit.cpp",
|
"DSPJit.cpp",
|
||||||
"DSPCodeUtil.cpp",
|
"DSPCodeUtil.cpp",
|
||||||
|
"LabelMap.cpp",
|
||||||
# "DSPHost.cpp",
|
# "DSPHost.cpp",
|
||||||
"DSPTables.cpp",
|
"DSPTables.cpp",
|
||||||
]
|
]
|
||||||
|
@ -53,12 +53,6 @@ u16 dsp_dmem_read(u16 addr)
|
|||||||
case 0x1: // 1xxx COEF
|
case 0x1: // 1xxx COEF
|
||||||
return g_dsp.coef[addr & DSP_COEF_MASK];
|
return g_dsp.coef[addr & DSP_COEF_MASK];
|
||||||
|
|
||||||
// FIXME: unknown addresses used by zelda
|
|
||||||
/* case 0x2:
|
|
||||||
case 0x3:
|
|
||||||
case 0x4:
|
|
||||||
break;*/
|
|
||||||
|
|
||||||
case 0xf: // Fxxx HW regs
|
case 0xf: // Fxxx HW regs
|
||||||
return gdsp_ifx_read(addr);
|
return gdsp_ifx_read(addr);
|
||||||
|
|
||||||
@ -88,4 +82,4 @@ void dsp_dmem_write(u16 addr, u16 val)
|
|||||||
ERROR_LOG(DSPLLE, "%04x DSP ERROR: Write to UNKNOWN (%04x) memory", g_dsp.pc, addr);
|
ERROR_LOG(DSPLLE, "%04x DSP ERROR: Write to UNKNOWN (%04x) memory", g_dsp.pc, addr);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user