Unfinished

This commit is contained in:
Adam
2014-12-01 00:31:26 -05:00
parent 41681f94a5
commit 9a128c191c
21 changed files with 687 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
package info.sigterm.deob.attributes.code;
import java.io.DataInputStream;
import java.io.IOException;
public class ALoad extends Instruction
{
int index;
ALoad(Instructions instructions, InstructionType type, int pc) throws IOException
{
super(instructions, type, pc);
DataInputStream is = instructions.getCode().getAttributes().getStream();
index = is.readByte();
length += 1;
}
}