Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.logic.model.editor / src / net / mograsim / logic / model / editor / handles / PinHandle.java
index 66c18ac..2e4a9dc 100644 (file)
@@ -4,9 +4,9 @@ import net.mograsim.logic.model.model.wires.Pin;
 
 public abstract class PinHandle extends Handle
 {
-       public PinHandle()
+       public PinHandle(int priority)
        {
-               super();
+               super(priority);
        }
 
        public abstract Pin getPin();