this doesn't work at all but looks bette

This commit is contained in:
Adam
2015-07-31 23:48:35 -04:00
parent 7b4de7d8db
commit 7ce6cca104
2 changed files with 304 additions and 57 deletions

View File

@@ -166,9 +166,9 @@ public enum InstructionType
IF_ICMPEQ(0x9f, "if_icmpeq", If.class),
IF_ICMPNE(0xa0, "if_icmpne", If.class),
IF_ICMPLT(0xa1, "if_cmplt", If.class),
IF_CMPGE(0xa2, "if_cmpge", If.class),
IF_CMPGT(0xa3, "if_cmpgt", If.class),
IF_CMPLE(0xa4, "if_cmple", If.class),
IF_ICMPGE(0xa2, "if_icmpge", If.class),
IF_ICMPGT(0xa3, "if_icmpgt", If.class),
IF_ICMPLE(0xa4, "if_icmple", If.class),
IF_ACMPEQ(0xa5, "if_acmpeq", If.class),
IF_ACMPNE(0xa6, "if_acmpne", If.class),
GOTO(0xa7, "goto", Goto.class),