]> git.sur5r.net Git - cc65/blobdiff - src/common/target.h
Fix
[cc65] / src / common / target.h
index 803248d9c886101946555d381e9bcdd2e8d7b183..68c0953fef307f86944cb17e724e9ee18c07bb23 100644 (file)
@@ -55,6 +55,7 @@ typedef enum {
     TGT_NONE,
     TGT_MODULE,
     TGT_ATARI,
+    TGT_ATARI5200,
     TGT_ATARIXL,
     TGT_VIC20,
     TGT_C16,
@@ -63,27 +64,32 @@ typedef enum {
     TGT_PLUS4,
     TGT_CBM510,
     TGT_CBM610,
+    TGT_OSIC1P,
     TGT_PET,
+    TGT_BBC,
     TGT_APPLE2,
     TGT_APPLE2ENH,
-    TGT_ATMOS,
-    TGT_BBC,
-    TGT_CREATIVISION,
-    TGT_GEOS_APPLE,
     TGT_GEOS_CBM,
+    TGT_GEOS_APPLE,
     TGT_LUNIX,
-    TGT_LYNX,
+    TGT_ATMOS,
+    TGT_TELEMON24,
+    TGT_TELEMON30,     
     TGT_NES,
+    TGT_SUPERVISION,
+    TGT_LYNX,
     TGT_SIM6502,
     TGT_SIM65C02,
-    TGT_SUPERVISION,
+    TGT_PCENGINE,
+    TGT_GAMATE,
+    TGT_C65,
     TGT_COUNT                   /* Number of target systems */
 } target_t;
 
 /* Collection of target properties */
 typedef struct TargetProperties TargetProperties;
 struct TargetProperties {
-    const char              Name[13];   /* Name of the target */
+    const char              Name[12];   /* Name of the target */
     cpu_t                   DefaultCPU; /* Default CPU for this target */
     unsigned char           BinFmt;     /* Default binary format for this target */
     const unsigned char*    CharMap;    /* Character translation table */
@@ -107,8 +113,8 @@ extern target_t         Target;
 
 target_t FindTarget (const char* Name);
 /* Find a target by name and return the target id. TGT_UNKNOWN is returned if
- * the given name is no valid target.
- */
+** the given name is no valid target.
+*/
 
 const TargetProperties* GetTargetProperties (target_t Target);
 /* Return the properties for a target */
@@ -119,7 +125,5 @@ const char* GetTargetName (target_t Target);
 
 
 /* End of target.h */
-#endif
-
-
 
+#endif