1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00

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
This commit is contained in:
uz 2011-08-31 21:00:20 +00:00
parent 8fc851b338
commit d1abb7e808

View File

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