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:
nakeee 2009-04-18 21:26:44 +00:00
parent 10989fda06
commit d939afdcf2
2 changed files with 2 additions and 7 deletions

View file

@ -16,6 +16,7 @@ files = [
"DSPInterpreter.cpp",
"DSPJit.cpp",
"DSPCodeUtil.cpp",
"LabelMap.cpp",
# "DSPHost.cpp",
"DSPTables.cpp",
]

View file

@ -53,12 +53,6 @@ u16 dsp_dmem_read(u16 addr)
case 0x1: // 1xxx COEF
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
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);
break;
}
}
}