Skip to content

Commit

Permalink
Merge pull request #77 from iss000/master
Browse files Browse the repository at this point in the history
AND instruction bug in monitor
  • Loading branch information
pete-gordon committed Nov 23, 2015
2 parents 20a3f9f + dc1c95f commit aaeed2b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions monitor.c
Expand Up @@ -258,9 +258,8 @@ static struct asminf asmtab[] = { { "BRK", 0x00, -1, -1, -1, -1, -1,
{ "BPL", -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0x10, -1 },
{ "CLC", 0x18, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 },
{ "JSR", -1, -1, -1, -1, -1, 0x20, -1, -1, -1, -1, -1, -1 },
{ "AND", -1, -1, -1, 0x35, -1, -1, 0x3d, 0x39, 0x21, 0x31, -1, -1 },
{ "AND", -1, 0x29, 0x25, 0x35, -1, 0x2d, 0x3d, 0x39, 0x21, 0x31, -1, -1 },
{ "BIT", -1, -1, 0x24, -1, -1, 0x2c, -1, -1, -1, -1, -1, -1 },
{ "AND", -1, 0x29, 0x25, -1, -1, 0x2d, -1, -1, -1, -1, -1, -1 },
{ "ROL", 0x2a, -1, 0x26, 0x36, -1, 0x2e, 0x3e, -1, -1, -1, -1, -1 },
{ "PLP", 0x28, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 },
{ "BMI", -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0x30, -1 },
Expand Down

0 comments on commit aaeed2b

Please sign in to comment.