* src/hc08/gen.c (hc08_emitDebuggerSymbol),
[fw/sdcc] / src / pic16 / main.c
index 6c98fb22d3934f1f8f29ed09807fe2f92936e905..d295080d1ad48cc608923ccc8a8bec9b50e587fb 100644 (file)
@@ -82,6 +82,10 @@ static int regParmFlg = 0;   /* determine if we can register a parameter */
 
 pic16_options_t pic16_options;
 
+/* Also defined in gen.h, but the #include is commented out */
+/* for an unknowned reason. - EEP */
+void pic16_emitDebuggerSymbol (char *);
+
 static void
 _pic16_init (void)
 {
@@ -806,6 +810,9 @@ PORT pic16_port =
   {
     1, -1
   },
+  {
+    pic16_emitDebuggerSymbol
+  },
   "_",
   _pic16_init,
   _pic16_parseOptions,