add c64dtv support

This commit is contained in:
Zsolt Branyiczky
2020-11-10 10:32:29 +01:00
committed by Oliver Schmidt
parent 77da8d5490
commit b33b053307
14 changed files with 486 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ CPU_ISET_SWEET16 = $0040
CPU_ISET_HUC6280 = $0080
;CPU_ISET_M740 = $0100 not actually implemented
CPU_ISET_4510 = $0200
CPU_ISET_6502DTV = $0400
; CPU capabilities
CPU_NONE = CPU_ISET_NONE
@@ -20,3 +21,4 @@ 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
CPU_6502DTV = CPU_ISET_6502|CPU_ISET_6502X|CPU_ISET_6502DTV