Made formatting uniform - commit for logicui
[Mograsim.git] / LogicUI / src / era / mi / gui / examples / RSLatchGUIExample.java
index 4dd9c44..e5890d7 100644 (file)
@@ -11,9 +11,9 @@ import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
 \r
 public class RSLatchGUIExample\r
 {\r
-       private static final int        WIRE_DELAY      = 40;\r
-       private static final int        OR_DELAY        = 100;\r
-       private static final int        NOT_DELAY       = 100;\r
+       private static final int WIRE_DELAY = 10;\r
+       private static final int OR_DELAY = 50;\r
+       private static final int NOT_DELAY = 50;\r
 \r
        public static void main(String[] args)\r
        {\r
@@ -39,8 +39,10 @@ public class RSLatchGUIExample
                GUINotGate not1 = ui.addComponent(new GUINotGate(NOT_DELAY, t1, q), 200, 107.5);\r
                GUINotGate not2 = ui.addComponent(new GUINotGate(NOT_DELAY, t2, nq), 200, 197.5);\r
 \r
-               WireConnectionPoint p1 = ui.addComponent(new WireConnectionPoint(q, 2), 250, 112.5);\r
-               WireConnectionPoint p2 = ui.addComponent(new WireConnectionPoint(nq, 2), 250, 202.5);\r
+               WireConnectionPoint p1 = ui.addComponent(new WireConnectionPoint(q, 3), 250, 112.5);\r
+               WireConnectionPoint p2 = ui.addComponent(new WireConnectionPoint(nq, 3), 250, 202.5);\r
+               WireConnectionPoint o1 = ui.addComponent(new WireConnectionPoint(q, 1), 270, 112.5);\r
+               WireConnectionPoint o2 = ui.addComponent(new WireConnectionPoint(nq, 1), 270, 202.5);\r
 \r
                ui.addWire(rIn, 0, or1, 0);\r
                ui.addWire(sIn, 0, or2, 1);\r
@@ -50,5 +52,7 @@ public class RSLatchGUIExample
                ui.addWire(not2, 1, p2, 0);\r
                ui.addWire(p1, 1, or2, 0, new Point(250, 130), new Point(140, 185), new Point(140, 197.5));\r
                ui.addWire(p2, 1, or1, 1, new Point(250, 185), new Point(140, 130), new Point(140, 117.5));\r
+               ui.addWire(p1, 2, o1, 0);\r
+               ui.addWire(p2, 2, o2, 0);\r
        }\r
 }
\ No newline at end of file