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 +}