]> git.sur5r.net Git - cc65/blobdiff - src/common/target.c
Added the lynx target
[cc65] / src / common / target.c
index b302888e514af6d30612556603f8708f81e90ce2..d0dfefd6735f3ba5a08a8c61580e98c8c8427fca 100644 (file)
@@ -65,13 +65,14 @@ const char* TargetNames [TGT_COUNT] = {
     "cbm610",
     "pet",
     "bbc",
-    "apple2",   
+    "apple2",
     "apple2enh",
     "geos",
     "lunix",
     "atmos",
     "nes",
     "supervision",
+    "lynx"
 };
 
 
@@ -98,6 +99,7 @@ const cpu_t DefaultCPU[TGT_COUNT] = {
     CPU_6502,           /* atmos */
     CPU_6502,           /* nes */
     CPU_65SC02,         /* supervision */
+    CPU_65C02,          /* lynx */
 };
 
 
@@ -138,3 +140,4 @@ target_t FindTarget (const char* Name)
 
 
 
+