From d1abb7e80868cdfde2cc1f9a4359d72a300e5d35 Mon Sep 17 00:00:00 2001 From: uz Date: Wed, 31 Aug 2011 21:00:20 +0000 Subject: [PATCH] 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 --- src/common/hlldbgsym.h | 4 ++++ 1 file changed, 4 insertions(+) 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 */ -- 2.39.5