Ejemplo n.º 1
0
 public void Start()
 {
     while(true)
     {
         var instruction = new CpuInstruction(_memory.GetWordAt(IP));
         _instructionExector.Execute(instruction);
     }
 }
Ejemplo n.º 2
0
 public void Setup()
 {
     _cut = new CpuInstruction();
 }