Added HuC6280 CPU

git-svn-id: svn://svn.cc65.org/cc65/trunk@3617 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2005-09-01 19:57:17 +00:00
parent 0da9d41a00
commit 50645b8261
2 changed files with 20 additions and 15 deletions

View File

@@ -1,15 +1,16 @@
; CPU bitmask constants
CPU_ISET_NONE = $01
CPU_ISET_6502 = $02
CPU_ISET_6502X = $04
CPU_ISET_65SC02 = $08
CPU_ISET_65C02 = $10
CPU_ISET_65816 = $20
CPU_ISET_SUNPLUS = $40
CPU_ISET_SWEET16 = $80
CPU_ISET_NONE = $0001
CPU_ISET_6502 = $0002
CPU_ISET_6502X = $0004
CPU_ISET_65SC02 = $0008
CPU_ISET_65C02 = $0010
CPU_ISET_65816 = $0020
CPU_ISET_SUNPLUS = $0040
CPU_ISET_SWEET16 = $0080
CPU_ISET_HUC6280 = $0100
; CPU capabilities
; CPU capabilities
CPU_NONE = CPU_ISET_NONE
CPU_6502 = CPU_ISET_6502
CPU_6502X = CPU_ISET_6502|CPU_ISET_6502X
@@ -18,4 +19,6 @@ CPU_65C02 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02
CPU_65816 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65816
CPU_SUNPLUS = CPU_ISET_SUNPLUS
CPU_SWEET16 = CPU_ISET_SWEET16
CPU_HUC6280 = CPU_ISET_6502|CPU_ISET_65SC02|CPU_ISET_65C02|CPU_ISET_HUC6280