From dc1c95ff8dd9f91bbee40a3e6da9b07ec50098e0 Mon Sep 17 00:00:00 2001 From: iss Date: Mon, 23 Nov 2015 09:41:24 +0200 Subject: [PATCH] fix: AND instruction in monitor --- monitor.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/monitor.c b/monitor.c index 7403f715..aac5ca20 100644 --- a/monitor.c +++ b/monitor.c @@ -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 },