instruction set fix

This commit is contained in:
honfika@gmail.com
2015-03-24 12:42:04 +01:00
parent 166e2f7822
commit cb02d73620

View File

@@ -735,7 +735,7 @@ public class ASM3Parser {
}
boolean insFound = false;
for (InstructionDefinition def : AVM2Code.instructionSet) {
if (def.instructionName.equals((String) symb.value)) {
if (def != null && def.instructionName.equals((String) symb.value)) {
insFound = true;
List<Integer> operandsList = new ArrayList<>();