]> git.sur5r.net Git - cc65/commitdiff
Fixed CPU definition of Lynx. Removed nonsense target vc20. 283/head
authorPolluks <korisnik@Powerbook-3.fritz.box>
Tue, 12 Apr 2016 21:58:30 +0000 (23:58 +0200)
committerPolluks <korisnik@Powerbook-3.fritz.box>
Tue, 12 Apr 2016 21:58:30 +0000 (23:58 +0200)
asminc/lynx.inc
asminc/supervision.inc
src/common/target.c

index 2225bf3c8c2797a0c0329ccb6699f65ec20d25ea..81a60bf2ef81a208235fbd6003cec5bc986dd424 100644 (file)
@@ -4,7 +4,7 @@
 ;
 ; Reference:
 ;  Bastian Schick's Lynx Documentation
-;  http://www.geocities.com/SiliconValley/Byte/4242/lynx/
+;  http://www.geocities.ws/SiliconValley/Byte/4242/lynx/
 ;
 
 ; ***
index a75fb02f6bae4c3f0726320c757b0341fd8b9fe6..a1cc212f6b03c7677958edafab6d836793a50b32 100644 (file)
@@ -1,8 +1,7 @@
 ; supervision symbols
 
-;  supervision 65c02s
-; in cc65 up to 2.9.1 65c02 means 65c02s
-.pc02
+; supervision 65c02s
+; in cc65 up to 2.9.1 65c02 means 65sc02
 
 lcd_addr = $4000
 LCD_LINESIZE = $30
index 7e152fe945e10aa07e8159e1e9037fd75c77ea4c..f76d03ffb452f9c18fe01f3d18ef11167324c7ea 100644 (file)
@@ -139,7 +139,7 @@ struct TargetEntry {
 };
 
 /* Table that maps target names to ids. Sorted alphabetically for bsearch.
-** Allows mupltiple entries for one target id (target name aliases).
+** Allows multiple entries for one target id (target name aliases).
 */
 static const TargetEntry TargetMap[] = {
     {   "apple2",       TGT_APPLE2      },
@@ -168,7 +168,6 @@ static const TargetEntry TargetMap[] = {
     {   "sim6502",      TGT_SIM6502     },
     {   "sim65c02",     TGT_SIM65C02    },
     {   "supervision",  TGT_SUPERVISION },
-    {   "vc20",         TGT_VIC20       },
     {   "vic20",        TGT_VIC20       },
 };
 #define MAP_ENTRY_COUNT         (sizeof (TargetMap) / sizeof (TargetMap[0]))
@@ -199,7 +198,7 @@ static const TargetProperties PropertyTable[TGT_COUNT] = {
     { "atmos",          CPU_6502,       BINFMT_BINARY,      CTNone  },
     { "nes",            CPU_6502,       BINFMT_BINARY,      CTNone  },
     { "supervision",    CPU_65SC02,     BINFMT_BINARY,      CTNone  },
-    { "lynx",           CPU_65C02,      BINFMT_BINARY,      CTNone  },
+    { "lynx",           CPU_65SC02,     BINFMT_BINARY,      CTNone  },
     { "sim6502",        CPU_6502,       BINFMT_BINARY,      CTNone  },
     { "sim65c02",       CPU_65C02,      BINFMT_BINARY,      CTNone  },
 };