]> git.sur5r.net Git - cc65/blobdiff - src/common/target.h
Merge pull request #249 from polluks/master
[cc65] / src / common / target.h
index e1675ad651c08e1f61fdcdec4530e1e8b7d4580d..3ea562aa6dc9c4d26761ad13533b40c5b22ab31f 100644 (file)
@@ -55,6 +55,7 @@ typedef enum {
     TGT_NONE,
     TGT_MODULE,
     TGT_ATARI,
+    TGT_ATARI5200,
     TGT_ATARIXL,
     TGT_VIC20,
     TGT_C16,
@@ -63,6 +64,7 @@ typedef enum {
     TGT_PLUS4,
     TGT_CBM510,
     TGT_CBM610,
+    TGT_OSIC1P,
     TGT_PET,
     TGT_BBC,
     TGT_APPLE2,
@@ -76,6 +78,7 @@ typedef enum {
     TGT_LYNX,
     TGT_SIM6502,
     TGT_SIM65C02,
+    TGT_PCENGINE,
     TGT_COUNT                   /* Number of target systems */
 } target_t;
 
@@ -106,8 +109,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 */
@@ -118,7 +121,5 @@ const char* GetTargetName (target_t Target);
 
 
 /* End of target.h */
-#endif
-
-
 
+#endif