* src/hc08/gen.c (hc08_emitDebuggerSymbol),
[fw/sdcc] / src / port.h
index e3c08ae7287575aa952b27fa88a435174039d08c..2005ddfd89a30cd477db76a6f33fdebb7e28f77b 100644 (file)
@@ -195,6 +195,24 @@ typedef struct
       }
     support;
 
+    struct
+      {
+       void (*emitDebuggerSymbol) (char *);
+       struct
+         {
+           int (*regNum) (struct regs *);
+           bitVect * cfiSame;
+           bitVect * cfiUndef;
+           int addressSize;
+           int regNumRet;
+           int regNumSP;
+           int regNumBP;
+           int offsetSP;
+         }
+       dwarf;
+      }
+    debugger;
+    
 /** Prefix to add to a C function (eg "_") */
     const char *fun_prefix;