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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue