mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +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:
parent
372caa743a
commit
7496da8f93
@ -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 */
|
||||
|
@ -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 */
|
||||
|
@ -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 */
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user