Added new CPU SWEET16

git-svn-id: svn://svn.cc65.org/cc65/trunk@3208 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2004-10-03 21:26:00 +00:00
parent 7d72f47fe6
commit 7d0eb0d3ff
14 changed files with 785 additions and 78 deletions

View File

@@ -57,6 +57,7 @@ const char* CPUNames[CPU_COUNT] = {
"65C02",
"65816",
"sunplus",
"sweet16",
};
/* Tables with CPU instruction sets */
@@ -66,7 +67,8 @@ const unsigned CPUIsets[CPU_COUNT] = {
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,
CPU_ISET_SUNPLUS
CPU_ISET_SUNPLUS,
CPU_ISET_SWEET16,
};