]> git.sur5r.net Git - cc65/commitdiff
Added an offset field to the high level language symbol definition.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 29 Aug 2011 18:55:29 +0000 (18:55 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 29 Aug 2011 18:55:29 +0000 (18:55 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5280 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/hldbgsym.h

index 425b35a9957c05435f56dd94d5e2f6557173f6b2..68f328f4f55eb92f155c85d7491768136a25a241 100644 (file)
@@ -51,7 +51,7 @@
 /*****************************************************************************/
 
 
+
 /* Flag bits that tell something about the symbol */
 #define HL_TYPE_FUNC    0x0000U                 /* Function */
 #define HL_TYPE_SYM     0x0001U                 /* Symbol */
@@ -74,6 +74,7 @@ struct HLDbgSym {
     unsigned    Flags;                  /* See above */
     unsigned    Name;                   /* String id of name */
     unsigned    AsmName;                /* String id of assembler name */
+    int         Offs;                   /* Offset if any */
     unsigned    Type;                   /* String id of type */
     unsigned    ScopeId;                /* Id of parent scope */
 };