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

@@ -64,6 +64,11 @@ public class Instructions
return code;
}
public Instruction getFirstInstruction()
{
return instructions.get(0);
}
public Instruction findInstruction(int pc)
{
for (Instruction i : instructions)