]> git.sur5r.net Git - cc65/blobdiff - src/common/fragdefs.h
Added two replacements for negax. Shift right for signed values can be treated
[cc65] / src / common / fragdefs.h
index 257b20fa35128762c89e72e7814b4f098308cab2..2de81967a367e662dc0f6b9c72353d0d2c027d51 100644 (file)
@@ -47,7 +47,6 @@
 /* Masks for the fragment type byte */
 #define FRAG_TYPEMASK   0x38                   /* Mask the type of the fragment */
 #define FRAG_BYTEMASK   0x07                   /* Mask for byte count */
-#define FRAG_CHECKMASK  0x40            /* Mask for check expressions */
 
 /* Fragment types */
 #define FRAG_LITERAL           0x00            /* Literal data */
 
 #define FRAG_FILL              0x20            /* Fill bytes */
 
-/* Fragment checks */
-#define FRAG_CHECK      0x40            /* Check expressions exist */
-
-/* Fragment check actions */
-#define FRAG_ACT_WARN   0x00U           /* Print a warning */
-#define FRAG_ACT_ERROR  0x01U           /* Exit with an error */
-
 
 
 /* End of fragdefs.h */