1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-02 19:42:23 +00:00

Fixed a bug in the opcode tables

git-svn-id: svn://svn.cc65.org/cc65/trunk@2588 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-10-30 20:35:07 +00:00
parent 372caa743a
commit 7496da8f93
4 changed files with 4 additions and 4 deletions

View File

@ -256,7 +256,7 @@ const OpcDesc OpcTable_6502[256] = {
{ "dec", 3, flUseLabel, OH_Absolute }, /* $ce */
{ "", 1, flIllegal, OH_Illegal, }, /* $cf */
{ "bne", 2, flLabel, OH_Relative }, /* $d0 */
{ "cmp", 2, flUseLabel, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirectY }, /* $d1 */
{ "", 1, flIllegal, OH_Illegal, }, /* $d2 */
{ "", 1, flIllegal, OH_Illegal, }, /* $d3 */
{ "pei", 2, flUseLabel, OH_Direct }, /* $d4 */

View File

@ -256,7 +256,7 @@ const OpcDesc OpcTable_65816[256] = {
{ "dec", 3, flUseLabel, OH_Absolute }, /* $ce */
{ "cmp", 4, flUseLabel, OH_AbsoluteLong }, /* $cf */
{ "bne", 2, flLabel, OH_Relative }, /* $d0 */
{ "cmp", 2, flUseLabel, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirectY }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirect }, /* $d2 */
{ "cmp", 2, flNone, OH_StackRelativeIndirectY}, /* $d3 */
{ "pei", 2, flUseLabel, OH_Direct }, /* $d4 */

View File

@ -256,7 +256,7 @@ const OpcDesc OpcTable_65C02[256] = {
{ "dec", 3, flUseLabel, OH_Absolute }, /* $ce */
{ "bbs4", 3, flUseLabel, OH_BitBranch }, /* $cf */
{ "bne", 2, flLabel, OH_Relative }, /* $d0 */
{ "cmp", 2, flUseLabel, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirectY }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirect }, /* $d2 */
{ "", 1, flIllegal, OH_Illegal, }, /* $d3 */
{ "pei", 2, flUseLabel, OH_Direct }, /* $d4 */

View File

@ -256,7 +256,7 @@ const OpcDesc OpcTable_65SC02[256] = {
{ "dec", 3, flUseLabel, OH_Absolute }, /* $ce */
{ "", 1, flIllegal, OH_Illegal, }, /* $cf */
{ "bne", 2, flLabel, OH_Relative }, /* $d0 */
{ "cmp", 2, flUseLabel, OH_DirectXIndirect }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirectY }, /* $d1 */
{ "cmp", 2, flUseLabel, OH_DirectIndirect }, /* $d2 */
{ "", 1, flIllegal, OH_Illegal, }, /* $d3 */
{ "pei", 2, flUseLabel, OH_Direct }, /* $d4 */