]> git.sur5r.net Git - cc65/blobdiff - src/common/target.c
Fixed parameter naming
[cc65] / src / common / target.c
index 8cc0208bc043c43e6bc85dffc740904d7a121cf4..d0dfefd6735f3ba5a08a8c61580e98c8c8427fca 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2003 Ullrich von Bassewitz                                       */
+/* (C) 2000-2004 Ullrich von Bassewitz                                       */
 /*               Römerstrasse 52                                             */
 /*               D-70794 Filderstadt                                         */
 /* EMail:        uz@cc65.org                                                 */
@@ -66,11 +66,13 @@ const char* TargetNames [TGT_COUNT] = {
     "pet",
     "bbc",
     "apple2",
+    "apple2enh",
     "geos",
     "lunix",
     "atmos",
     "nes",
     "supervision",
+    "lynx"
 };
 
 
@@ -91,11 +93,13 @@ const cpu_t DefaultCPU[TGT_COUNT] = {
     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 */
 };
 
 
@@ -136,3 +140,4 @@ target_t FindTarget (const char* Name)
 
 
 
+