Exemplo n.º 1
0
 /// <summary>
 /// Returns true if there are no more cycles left on the current instruction. This is the delimiter for CPU instructions (which
 /// may or may not take more than one cycle to complete).
 /// </summary>
 public bool IsCycleComplete()
 {
     return(_cpu.IsCycleComplete());
 }