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,21 @@
package info.sigterm.deob.attributes.code;
public class Instruction
{
private Instructions instructions;
private InstructionType type;
private int pc;
protected int length = 1;
Instruction(Instructions instructions, InstructionType type, int pc)
{
this.instructions = instructions;
this.type = type;
this.pc = pc;
}
public int getLength()
{
return length;
}
}