Exemplo n.º 1
0
 public void ExecuteAll()
 {
     while (pc < InstrMem.Size)
     {
         InstrMem.GetInstruction(pc).Execute(ref pc, Memory, Reg);
     }
 }
Exemplo n.º 2
0
 public void ExecuteNext()
 {
     InstrMem.GetInstruction(pc).Execute(ref pc, Memory, Reg);
 }