X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCdebug.c;h=8885d7ca01ae6354f56b904a00b8d46cd0fb29bf;hb=df0c2dc7b4500ed3ca07ed80663f2c9ce25c3f79;hp=b07aaf2ecd1f3a6399e8de83ada1d8c6bb9549c3;hpb=3edb89ad609028843dfe58f72953cd207582a8ca;p=fw%2Fsdcc diff --git a/src/SDCCdebug.c b/src/SDCCdebug.c index b07aaf2e..8885d7ca 100644 --- a/src/SDCCdebug.c +++ b/src/SDCCdebug.c @@ -149,5 +149,13 @@ void dumpSymInfo(char *pcName, memmap *memItem) } - - +/*------------------------------------------------------------------*/ +/* emitDebuggerSymbol - call the port specific routine to associate */ +/* the current code location with a debugger symbol */ +/*------------------------------------------------------------------*/ +void +emitDebuggerSymbol (char * debugSym) +{ + if (port->debugger.emitDebuggerSymbol) + port->debugger.emitDebuggerSymbol (debugSym); +}