]> git.sur5r.net Git - cc65/blobdiff - src/common/target.c
Fixed type in target name (it is not supposed to be "geos-apple2") and adjusted the...
[cc65] / src / common / target.c
index 2c553fbaaacba5766c5787dcd73d9d00ae468f6e..2d1eb60b39c4c18055d3f5dc9f66690113ad0c46 100644 (file)
@@ -122,8 +122,8 @@ struct TargetEntry {
  * Allows mupltiple entries for one target id (target name aliases).
  */
 static const TargetEntry TargetMap[] = {
-    {   "apple2enh",    TGT_APPLE2ENH   },
     {   "apple2",       TGT_APPLE2      },
+    {   "apple2enh",    TGT_APPLE2ENH   },
     {   "atari",        TGT_ATARI       },
     {   "atmos",        TGT_ATMOS       },
     {   "bbc",          TGT_BBC         },
@@ -166,7 +166,7 @@ static const TargetProperties PropertyTable[TGT_COUNT] = {
     { "apple2",         CPU_6502,       CTNone  },
     { "apple2enh",      CPU_65C02,      CTNone  },
     { "geos-cbm",       CPU_6502,       CTNone  },
-    { "geos-apple2",    CPU_6502,       CTNone  },
+    { "geos-apple",     CPU_65C02,      CTNone  },
     { "lunix",          CPU_6502,       CTNone  },
     { "atmos",          CPU_6502,       CTNone  },
     { "nes",            CPU_6502,       CTNone  },