Пример #1
0
 public void Start()
 {
     while(true)
     {
         var instruction = new CpuInstruction(_memory.GetWordAt(IP));
         _instructionExector.Execute(instruction);
     }
 }
Пример #2
0
 public void Setup()
 {
     _cut = new CpuInstruction();
 }