1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 02:30:44 +00:00

Added an offset field to the high level language symbol definition.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5280 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-29 18:55:29 +00:00
parent 305cf64d40
commit 314476de27

View File

@ -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 */
};