]> git.sur5r.net Git - cc65/blobdiff - src/ca65/feature.h
Merge remote-tracking branch 'upstream/master' into a5200
[cc65] / src / ca65 / feature.h
index 31ebae223e112feb8ebecd3f3adedff61e910f27..563ef5c2d6922ba66ec9722731585e13e425206b 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                feature.h                                 */
+/*                                 feature.h                                 */
 /*                                                                           */
-/*                 Subroutines for the emulation features                   */
+/*                  Subroutines for the emulation features                   */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2008 Ullrich von Bassewitz                                       */
-/*               Roemerstrasse 52                                            */
-/*               D-70794 Filderstadt                                         */
-/* EMail:        uz@cc65.org                                                 */
+/* (C) 2000-2013, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -34,7 +34,7 @@
 
 
 #ifndef FEATURE_H
-#define        FEATURE_H
+#define FEATURE_H
 
 
 
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 typedef enum {
-    FEAT_UNKNOWN               = -1,
+    FEAT_UNKNOWN                = -1,
     FEAT_DOLLAR_IS_PC,
     FEAT_LABELS_WITHOUT_COLONS,
     FEAT_LOOSE_STRING_TERM,
@@ -63,6 +63,8 @@ typedef enum {
     FEAT_MISSING_CHAR_TERM,
     FEAT_UBIQUITOUS_IDENTS,
     FEAT_C_COMMENTS,
+    FEAT_FORCE_RANGE,
+    FEAT_UNDERLINE_IN_NUMBERS,
 
     /* Special value: Number of features available */
     FEAT_COUNT
@@ -71,7 +73,7 @@ typedef enum {
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
@@ -92,6 +94,3 @@ feature_t SetFeature (const StrBuf* Key);
 /* End of feature.h */
 
 #endif
-
-
-