mirror of
https://github.com/cc65/cc65.git
synced 2025-01-26 17:36:57 +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:
parent
8fc851b338
commit
d1abb7e808
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user