Introduced sim speed description. Fixes #16
[Mograsim.git] / plugins / net.mograsim.logic.core / src / net / mograsim / logic / core / components / CoreClock.java
index e186928..5ae194b 100644 (file)
@@ -44,6 +44,11 @@ public class CoreClock extends CoreComponent implements TimelineEventHandler, Lo
                notifyObservers();
        }
 
+       public int getDelta()
+       {
+               return delta;
+       }
+
        public BitVector getOutValues()
        {
                return isOn ? BitVector.SINGLE_1 : BitVector.SINGLE_0;