Fix missing step after SWAP operations

This commit is contained in:
nicksavers 2014-09-19 15:24:48 +02:00
parent 3065258dc2
commit 5428b47c8d

View File

@ -734,7 +734,8 @@ public class VM {
program.stackRequire(n);
DataWord word_1 = stack.peek();
stack.set(stack.size() - 1, stack.get(stack.size() - n));
stack.set(stack.size() - n, word_1);
stack.set(stack.size() - n, word_1);
program.step();
} break;
case MLOAD:{