From: uz Date: Wed, 31 Aug 2011 21:00:20 +0000 (+0000) Subject: New flag that tells if the HLL symbol has an asm symbol attached. X-Git-Tag: V2.13.3~171 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d1abb7e80868cdfde2cc1f9a4359d72a300e5d35;p=cc65 New flag that tells if the HLL symbol has an asm symbol attached. git-svn-id: svn://svn.cc65.org/cc65/trunk@5291 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/hlldbgsym.h b/src/common/hlldbgsym.h index 175c77fcf..b24c0e94a 100644 --- a/src/common/hlldbgsym.h +++ b/src/common/hlldbgsym.h @@ -68,6 +68,10 @@ #define HLL_SC_MASK 0x0078U #define HLL_GET_SC(x) ((x) & HLL_SC_MASK) +/* Other information */ +#define HLL_DATA_SYM 0x0080U /* Attached asm symbol */ +#define HLL_HAS_SYM(x) (((x) & HLL_DATA_SYM) != 0) + /* End of hlldbgsyms.h */