1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-03 12:55:56 +00:00

Add new defines for export usage

git-svn-id: svn://svn.cc65.org/cc65/trunk@875 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-09-08 20:51:33 +00:00
parent fee7b6dc3b
commit 522ddabc35

View File

@ -56,6 +56,13 @@
#define IS_IMP_ABS(x) (((x) & IMP_MASK_SIZE) == IMP_ABS)
#define IS_IMP_ZP(x) (((x) & IMP_MASK_SIZE) == IMP_ZP)
/* Number of module constructor/destructor declarations for an export */
#define EXP_CONDES_MASK 0x07
#define IS_EXP_CONDES(x) (((x) & EXP_CONDES_MASK) != 0)
#define GET_EXP_CONDES_COUNT(x) ((x) & EXP_CONDES_MASK)
#define INC_EXP_CONDES_COUNT(x) ((x)++)
/* Export size */
#define EXP_ABS 0x00 /* Export as normal value */
#define EXP_ZP 0x08 /* Export as zero page value */
@ -72,12 +79,13 @@
#define IS_EXP_CONST(x) (((x) & EXP_MASK_VAL) == EXP_CONST)
#define IS_EXP_EXPR(x) (((x) & EXP_MASK_VAL) == EXP_EXPR)
/* Number of module constructor/destructor declarations for an export */
#define EXP_CONDES_MASK 0x07
/* Export usage */
#define EXP_EQUATE 0x00 /* Mask bit for an equate */
#define EXP_LABEL 0x20 /* Mask bit for a label */
#define EXP_MASK_LABEL 0x20 /* Value mask */
#define IS_EXP_CONDES(x) (((x) & EXP_CONDES_MASK) != 0)
#define GET_EXP_CONDES_COUNT(x) ((x) & EXP_CONDES_MASK)
#define INC_EXP_CONDES_COUNT(x) ((x)++)
#define IS_EXP_EQUATE(x) (((x) & EXP_MASK_LABEL) == EXP_EQUATE)
#define IS_EXP_LABEL(x) (((x) & EXP_MASK_LABEL) == EXP_LABEL)