From 8bbf37d17dc3802be2416f100c5cb65e8ffa3ea7 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Sun, 11 Feb 2018 15:59:49 -0700 Subject: [PATCH] Add missing LSR zero page instruction. --- tbl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tbl.c b/tbl.c index 8a5f3b4..ef179eb 100644 --- a/tbl.c +++ b/tbl.c @@ -83,6 +83,7 @@ struct info optbl[256] = { [0x41] = { "eor", 2, INX }, [0x45] = { "eor", 2, ZPG }, + [0x46] = { "lsr", 2, ZPG }, [0x48] = { "pha", 1, IMP }, [0x49] = { "eor", 2, IMM },