More execution stuff

This commit is contained in:
Adam
2014-12-02 12:02:29 -05:00
parent 4a24560be5
commit 37dac95ee0
69 changed files with 1563 additions and 110 deletions

View File

@@ -1,10 +1,10 @@
package info.sigterm.deob.attributes.code;
import info.sigterm.deob.execution.Execution;
import info.sigterm.deob.execution.Frame;
import java.util.ArrayList;
public class Instruction
public abstract class Instruction
{
private Instructions instructions;
private InstructionType type;
@@ -55,7 +55,6 @@ public class Instruction
{
}
public void execute(Execution e)
{
}
//public abstract void execute(Frame e);
public void execute(Frame e) { }
}