#1017 store alchemy opcodes have wrong order

This commit is contained in:
2015-08-21 20:27:02 +02:00
parent 1962cb99c9
commit 7ad7e80057
@@ -54,9 +54,9 @@ public class AlchemyStoreAVM2Item extends AVM2Item {
@Override
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) throws InterruptedException {
writer.append("s").append(type).append(size).append("(");
ofs.toString(writer, localData);
writer.append(",");
value.toString(writer, localData);
writer.append(",");
ofs.toString(writer, localData);
return writer.append(")");
}