Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.logic.model.am2900 / src / net / mograsim / logic / model / am2900 / components / Modelsel4_12.java
index 3aa416d..7cce14a 100644 (file)
@@ -23,7 +23,7 @@ public class Modelsel4_12 extends SimpleRectangularHardcodedModelComponent
 {
        public Modelsel4_12(LogicModelModifiable model, String name)
        {
-               super(model, "sel4_12", name, "4-way SEL\n12 bit");
+               super(model, "sel4_12", name, "4-way SEL\n12 bit", false);
                setSize(80, 40);
                addPin(new Pin(model, this, "SA", 1, PinUsage.INPUT, 0, 5), Position.RIGHT);
                addPin(new Pin(model, this, "SB", 1, PinUsage.INPUT, 0, 15), Position.RIGHT);
@@ -34,6 +34,8 @@ public class Modelsel4_12 extends SimpleRectangularHardcodedModelComponent
                addPin(new Pin(model, this, "C", 12, PinUsage.INPUT, 50, 0), Position.BOTTOM);
                addPin(new Pin(model, this, "D", 12, PinUsage.INPUT, 70, 0), Position.BOTTOM);
                addPin(new Pin(model, this, "Y", 12, PinUsage.OUTPUT, 40, 40), Position.TOP);
+
+               init();
        }
 
        @Override