--- hatari/tests/debugger/test-dummies.c 2019/04/09 08:52:35 1.1.1.3 +++ hatari/tests/debugger/test-dummies.c 2019/04/09 08:53:52 1.1.1.4 @@ -57,6 +57,9 @@ Uint32 TosAddress, TosSize; FILE *debugOutput; void DebugUI(debug_reason_t reason) { } void DebugUI_PrintCmdHelp(const char *psCmd) { } +char *DebugUI_MatchHelper(const char **strings, int items, const char *text, int state) { + return NULL; +} /* fake debugInfo.c stuff */ #include "debugInfo.h" @@ -66,9 +69,11 @@ Uint32 DebugInfo_GetTEXTEnd(void) { retu Uint32 DebugInfo_GetDATA(void) { return 0x12f4; } Uint32 DebugInfo_GetBSS(void) { return 0x1f34; } -/* fake debugdsp. stuff */ +/* fake debugdsp.c stuff */ #include "debugdsp.h" void DebugDsp_InitSession(void) { } +Uint32 DebugDsp_InstrCount(void) { return 0; } +Uint32 DebugDsp_OpcodeType(void) { return 0; } /* use fake dsp.c stuff in case config.h is configured with DSP emu */ #include "dsp.h" @@ -138,7 +143,7 @@ bool File_Exists(const char *filename) /* fake debugger file parsing */ #include "debugui.h" -bool DebugUI_ParseFile(const char *path) +bool DebugUI_ParseFile(const char *path, bool reinit) { return File_Exists(path); }