]> git.sur5r.net Git - cc65/blobdiff - src/common/cpu.h
Added different 65SC02 and 65C02 CPUs
[cc65] / src / common / cpu.h
index 05f07b38b518fa1335df3b201184ca4a76ab9b9d..187bef5ea050fa58793efa84262cb0c6024ebf27 100644 (file)
 typedef enum {
     CPU_UNKNOWN = -1,           /* Not specified or invalid target */
     CPU_6502,
+    CPU_65SC02,
     CPU_65C02,
     CPU_65816,
     CPU_SUNPLUS,               /* Not in the freeware version - sorry */
-    CPU_COUNT                  /* Number of different CPUs */
+    CPU_COUNT                          /* Number of different CPUs */
 } cpu_t;
 
 /* CPU used */
 extern cpu_t CPU;
 
 /* Table with target names */
-extern const char* CPUNames [CPU_COUNT];
+extern const char* CPUNames[CPU_COUNT];
 
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                          Code                                    */
 /*****************************************************************************/
 
 
@@ -77,7 +78,7 @@ cpu_t FindCPU (const char* Name);
 
 /* End of cpu.h */
 
-#endif
+#endif