]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 2 Aug 2003 09:55:54 +0000 (09:55 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 2 Aug 2003 09:55:54 +0000 (09:55 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2239 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/scanner.c

index 05ececed3e2be877f9dbc81c68dd22729ccd0eba..89ac5a41a7e0cecc4e721f80cefb663b880f3a6a 100644 (file)
@@ -81,9 +81,9 @@ static const struct Keyword {
     unsigned char   Type;              /* Token type */
 } Keywords [] = {
     { "_Pragma",        TOK_PRAGMA,     TT_C    },
-    { "__A__",         TOK_A,          TT_C    },
     { "__AX__",                TOK_AX,         TT_C    },
     { "__EAX__",               TOK_EAX,        TT_C    },
+    { "__A__",         TOK_A,          TT_C    },
     { "__X__",                 TOK_X,          TT_C    },
     { "__Y__",                 TOK_Y,          TT_C    },
     { "__asm__",               TOK_ASM,        TT_C    },
@@ -128,7 +128,7 @@ static const struct Keyword {
     { "void",                  TOK_VOID,       TT_C    },
     { "volatile",              TOK_VOLATILE,   TT_C    },
     { "while",                 TOK_WHILE,      TT_C    },
-};                              
+};
 #define KEY_COUNT      (sizeof (Keywords) / sizeof (Keywords [0]))