Exemple #1
0
 /// <summary>
 /// Sets the Value that will be written to a Register
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="tryte">Value to be written</param>
 public void BusInput(object sender, Tryte tryte)
 {
     _DataBus.BusInput(this, tryte);
 }
Exemple #2
0
 public void DataInput(object sender, IEnumerable <Trit> trits)
 {
     _TryteDataWire.BusInput(this, trits.ToTryte());
     _TrortDataWire.BusInput(this, trits.ToTrort());
 }