]> git.sur5r.net Git - cc65/blobdiff - src/common/target.c
Removed the ace target. It didn't have a linker config and was untested for
[cc65] / src / common / target.c
index b302888e514af6d30612556603f8708f81e90ce2..2c07eb9939c24a9c0a33a903844b1af41ee31890 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2004 Ullrich von Bassewitz                                       */
-/*               Römerstrasse 52                                             */
-/*               D-70794 Filderstadt                                         */
-/* EMail:        uz@cc65.org                                                 */
+/* (C) 2000-2009, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -59,19 +59,19 @@ const char* TargetNames [TGT_COUNT] = {
     "c16",
     "c64",
     "c128",
-    "ace",
     "plus4",
     "cbm510",
     "cbm610",
     "pet",
     "bbc",
-    "apple2",   
+    "apple2",
     "apple2enh",
     "geos",
     "lunix",
     "atmos",
     "nes",
     "supervision",
+    "lynx"
 };
 
 
@@ -85,7 +85,6 @@ const cpu_t DefaultCPU[TGT_COUNT] = {
     CPU_6502,           /* c16 */
     CPU_6502,           /* c64 */
     CPU_6502,           /* c128 */
-    CPU_6502,           /* ace */
     CPU_6502,           /* plus4 */
     CPU_6502,           /* cbm510 */
     CPU_6502,           /* cbm610 */
@@ -98,6 +97,7 @@ const cpu_t DefaultCPU[TGT_COUNT] = {
     CPU_6502,           /* atmos */
     CPU_6502,           /* nes */
     CPU_65SC02,         /* supervision */
+    CPU_65C02,          /* lynx */
 };
 
 
@@ -138,3 +138,4 @@ target_t FindTarget (const char* Name)
 
 
 
+