]> git.sur5r.net Git - cc65/blobdiff - asminc/cpu.mac
Fixed _textcolor definition.
[cc65] / asminc / cpu.mac
index 6b8aa6d7bfb00165de844ffa7bbf6c80231cb856..6b9cb994705716e1f0ed34a3a4cf6945f8bea702 100644 (file)
@@ -7,6 +7,8 @@ CPU_ISET_65C02     = $0010
 CPU_ISET_65816     = $0020
 CPU_ISET_SWEET16   = $0040
 CPU_ISET_HUC6280   = $0080
+;CPU_ISET_M740     = $0100 not actually implemented
+CPU_ISET_4510      = $0200
 
 ; CPU capabilities
 CPU_NONE           = CPU_ISET_NONE
@@ -17,3 +19,4 @@ CPU_65C02          = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02
 CPU_65816          = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65816
 CPU_SWEET16        = CPU_ISET_SWEET16
 CPU_HUC6280        = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02|CPU_ISET_HUC6280
+CPU_4510           = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02|CPU_ISET_4510