]> git.sur5r.net Git - cc65/blobdiff - src/common/target.c
Some more floating point support.
[cc65] / src / common / target.c
index 6b059f30ab16934db1d3f2a987e6fd4969f386f7..d0dfefd6735f3ba5a08a8c61580e98c8c8427fca 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2002 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 2000-2004 Ullrich von Bassewitz                                       */
+/*               Römerstrasse 52                                             */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
@@ -52,9 +52,11 @@ target_t Target      = TGT_NONE;
 
 /* Table with target names */
 const char* TargetNames [TGT_COUNT] = {
-    "none",     
+    "none",
     "module",
     "atari",
+    "vic20",
+    "c16",
     "c64",
     "c128",
     "ace",
@@ -64,8 +66,40 @@ const char* TargetNames [TGT_COUNT] = {
     "pet",
     "bbc",
     "apple2",
+    "apple2enh",
     "geos",
-    "lunix"
+    "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,           /* ace */
+    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 */
 };
 
 
@@ -104,4 +138,6 @@ target_t FindTarget (const char* Name)
 
 
 
-             
+
+
+