summaryrefslogtreecommitdiff
path: root/Source/Core/DSPCore
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-04-18 21:26:44 +0000
committernakeee <nakeee@gmail.com>2009-04-18 21:26:44 +0000
commitd939afdcf20faa8c32eb542917d8e2e8711bb81f (patch)
treeee82dcfb2c9aa379a077bc3894d43627a9cabc27 /Source/Core/DSPCore
parent10989fda064193e720abf071c212acf9e3129084 (diff)
one file missing in sconstruct
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3002 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DSPCore')
-rw-r--r--Source/Core/DSPCore/Src/SConscript1
-rw-r--r--Source/Core/DSPCore/Src/gdsp_memory.cpp8
2 files changed, 2 insertions, 7 deletions
diff --git a/Source/Core/DSPCore/Src/SConscript b/Source/Core/DSPCore/Src/SConscript
index 49346fc012..19ca950856 100644
--- a/Source/Core/DSPCore/Src/SConscript
+++ b/Source/Core/DSPCore/Src/SConscript
@@ -16,6 +16,7 @@ files = [
"DSPInterpreter.cpp",
"DSPJit.cpp",
"DSPCodeUtil.cpp",
+ "LabelMap.cpp",
# "DSPHost.cpp",
"DSPTables.cpp",
]
diff --git a/Source/Core/DSPCore/Src/gdsp_memory.cpp b/Source/Core/DSPCore/Src/gdsp_memory.cpp
index 8913c4521f..ef2b3beefb 100644
--- a/Source/Core/DSPCore/Src/gdsp_memory.cpp
+++ b/Source/Core/DSPCore/Src/gdsp_memory.cpp
@@ -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;
}
-} \ No newline at end of file
+}