changeset 77:35f6d6a5510f

Fixed typo in static lookup table for indexed modes
author lost@l-w.ca
date Wed, 20 Apr 2011 21:42:02 -0600
parents da74ccf4278c
children 19df13313b27
files lwasm/insn_indexed.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lwasm/insn_indexed.c	Wed Apr 20 21:12:54 2011 -0600
+++ b/lwasm/insn_indexed.c	Wed Apr 20 21:42:02 2011 -0600
@@ -56,7 +56,7 @@
 		{"w,x", 0x8e},		{"w,y", 0xae},		{"w,u", 0xce},		{"w,s", 0xee},
 		{",w", 0x8f},							{",w++", 0xcf},		{",--w", 0xef},
 		
-		{"[,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},