Beispiel #1
0
        public void Reset()
        {
            Value = 0;

            // The microstep being updated should be immedietley refelected by the control unit
            controlUnit.OnControlStateUpdated();
        }
Beispiel #2
0
        public void Reset()
        {
            Value = 0;

            if (Bus.Driver == this)
            {
                Bus.Driver = null;
            }

            // The IR being updated should be immedietley refelected by the control unit
            if (id == SystemRegister.IR)
            {
                controlUnit.OnControlStateUpdated();
            }
        }
Beispiel #3
0
 public void Reset()
 {
     Value = 0;
     controlUnit.OnControlStateUpdated();
 }