Esempio n. 1
0
 private void Output(Int64 i)
 {
     OutputQueue.Enqueue(i);
     if (OutputMachine != null)
     {
         OutputMachine.SendInput(OutputQueue.Dequeue());
     }
     SentOutput = true;
 }
Esempio n. 2
0
 public void SendInput(Int64 instruction)
 {
     Brain.SendInput(instruction);
 }