Added CPU_6502X for 6502 with illegal opcodes
git-svn-id: svn://svn.cc65.org/cc65/trunk@3016 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
/* */
|
||||
/* */
|
||||
/* */
|
||||
/* (C) 2003 Ullrich von Bassewitz */
|
||||
/* (C) 2003-2004 Ullrich von Bassewitz */
|
||||
/* R<>merstrasse 52 */
|
||||
/* D-70794 Filderstadt */
|
||||
/* EMail: uz@cc65.org */
|
||||
@@ -52,6 +52,7 @@ cpu_t CPU = CPU_UNKNOWN;
|
||||
/* Table with target names */
|
||||
const char* CPUNames[CPU_COUNT] = {
|
||||
"6502",
|
||||
"6502X",
|
||||
"65SC02",
|
||||
"65C02",
|
||||
"65816",
|
||||
@@ -61,6 +62,7 @@ const char* CPUNames[CPU_COUNT] = {
|
||||
/* Tables with CPU instruction sets */
|
||||
const unsigned CPUIsets[CPU_COUNT] = {
|
||||
CPU_ISET_6502,
|
||||
CPU_ISET_6502 | CPU_ISET_6502X,
|
||||
CPU_ISET_6502 | CPU_ISET_65SC02,
|
||||
CPU_ISET_6502 | CPU_ISET_65SC02 | CPU_ISET_65C02,
|
||||
CPU_ISET_6502 | CPU_ISET_65SC02 | CPU_ISET_65C02 | CPU_ISET_65816,
|
||||
|
||||
Reference in New Issue
Block a user