# HG changeset patch # User William Astle # Date 1354816401 25200 # Node ID 65510f1574e4e729efac9f20003ef8d29118f6cf # Parent ea092ebc53231c0b0e36aa685d93c6220f56c68f Fix error with [,u] in 6809-only mode Fix error in short circuit lookup table for indexing modes when using forced 6809 mode which prevented [,u] from working. This did not affect the default 6309-enabled mode. diff -r ea092ebc5323 -r 65510f1574e4 lwasm/insn_indexed.c --- a/lwasm/insn_indexed.c Sun Sep 23 13:11:34 2012 -0600 +++ b/lwasm/insn_indexed.c Thu Dec 06 10:53:21 2012 -0700 @@ -82,7 +82,7 @@ {"b,x", 0x85}, {"b,y", 0xa5}, {"b,u", 0xc5}, {"b,s", 0xe5}, {"d,x", 0x8b}, {"d,y", 0xab}, {"d,u", 0xcb}, {"d,s", 0xed}, - {"[,x]", 0x94}, {"[,y]", 0xb4}, {"[,u", 0xd4}, {"[,s]", 0xf4}, + {"[,x]", 0x94}, {"[,y]", 0xb4}, {"[,u]", 0xd4}, {"[,s]", 0xf4}, {"[,x++]", 0x91}, {"[,y++]", 0xb1}, {"[,u++]", 0xd1}, {"[,s++]", 0xf1}, {"[,--x]", 0x93}, {"[,--y]", 0xb3}, {"[,--u]", 0xd3}, {"[,--s]", 0xf3}, {"[a,x]", 0x96}, {"[a,y]", 0xb6}, {"[a,u]", 0xd6}, {"[a,s]", 0xf6},