]> 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 ca3d90af09f4d42878b47a9939a2cc1e646512d7..2c07eb9939c24a9c0a33a903844b1af41ee31890 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000      Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (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       */
@@ -53,17 +53,51 @@ target_t Target     = TGT_NONE;
 /* Table with target names */
 const char* TargetNames [TGT_COUNT] = {
     "none",
+    "module",
     "atari",
+    "vic20",
+    "c16",
     "c64",
     "c128",
-    "ace",
     "plus4",
     "cbm510",
     "cbm610",
     "pet",
     "bbc",
     "apple2",
+    "apple2enh",
     "geos",
+    "lunix",
+    "atmos",
+    "nes",
+    "supervision",
+    "lynx"
+};
+
+
+
+/* Table with default CPUs per target */
+const cpu_t DefaultCPU[TGT_COUNT] = {
+    CPU_6502,           /* none */
+    CPU_6502,           /* module */
+    CPU_6502,           /* atari */
+    CPU_6502,           /* vic20 */
+    CPU_6502,           /* c16 */
+    CPU_6502,           /* c64 */
+    CPU_6502,           /* c128 */
+    CPU_6502,           /* plus4 */
+    CPU_6502,           /* cbm510 */
+    CPU_6502,           /* cbm610 */
+    CPU_6502,           /* pet */
+    CPU_6502,           /* bbc */
+    CPU_6502,           /* apple2 */
+    CPU_65C02,          /* apple2enh */
+    CPU_6502,           /* geos */
+    CPU_6502,           /* lunix */
+    CPU_6502,           /* atmos */
+    CPU_6502,           /* nes */
+    CPU_65SC02,         /* supervision */
+    CPU_65C02,          /* lynx */
 };
 
 
@@ -101,4 +135,7 @@ target_t FindTarget (const char* Name)
 }
 
 
-            
+
+
+
+