--- previous/src/debug/debugInfo.c 2018/04/24 19:32:08 1.1.1.3 +++ previous/src/debug/debugInfo.c 2018/04/24 19:33:58 1.1.1.4 @@ -74,8 +74,6 @@ static void DebugInfo_CpuMemDump(Uint32 DebugInfo_CallCommand(DebugCpu_MemDump, "memdump", arg); } -#if ENABLE_DSP_EMU - static void DebugInfo_DspRegister(Uint32 arg) { } @@ -109,8 +107,6 @@ static Uint32 DebugInfo_DspMemArgs(int a return ((Uint32)space<<16) | value; } -#endif /* ENABLE_DSP_EMU */ - static void DebugInfo_RegAddr(Uint32 arg) { @@ -217,11 +213,9 @@ static const struct { } infotable[] = { { true, "default", DebugInfo_Default, NULL, "Show default debugger entry information" }, { true, "disasm", DebugInfo_CpuDisAsm, NULL, "Disasm CPU from PC or given
" }, -#if ENABLE_DSP_EMU { true, "dspdisasm", DebugInfo_DspDisAsm, NULL, "Disasm DSP from given
" }, { true, "dspmemdump",DebugInfo_DspMemDump, DebugInfo_DspMemArgs, "Dump DSP memory from given
" }, { true, "dspregs", DebugInfo_DspRegister,NULL, "Show DSP registers values" }, -#endif { true, "file", DebugInfo_FileParse, DebugInfo_FileArgs, "Parse commands from given debugger input " }, { true, "memdump", DebugInfo_CpuMemDump, NULL, "Dump CPU memory from given
" }, { true, "regaddr", DebugInfo_RegAddr, DebugInfo_RegAddrArgs, "Show from CPU/DSP address pointed by " },