Skip to content
Snippets Groups Projects

WIP: Master

Files

@@ -167,7 +167,7 @@ public class Machine
{
int instructionsExecuted = 0;
int pc = 0;
int pc = 1;
final int progLength = instructions.size();
while(true){
if (pc < 0 || pc >= progLength){
Loading