* src/hc08/gen.c (hc08_emitDebuggerSymbol),
[fw/sdcc] / src / pic / main.c
index a84d1bc8050122c8419d470bd3226677f16db153..2d5fedb5ab9b5836cda4ac5c7fe38be3c4be0b95 100644 (file)
@@ -51,6 +51,10 @@ void  pCodeInitRegisters(void);
 
 void pic14_assignRegisters (eBBlock ** ebbs, int count);
 
+/* Also defined in gen.h, but the #include is commented out */
+/* for an unknowned reason. - EEP */
+void pic14_emitDebuggerSymbol (char *);
+
 static int regParmFlg = 0;     /* determine if we can register a parameter */
 
 static void
@@ -453,6 +457,9 @@ PORT pic_port =
        {
                1, -1
        },
+       {
+               pic14_emitDebuggerSymbol
+       },
        "_",
        _pic14_init,
        _pic14_parseOptions,