Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.logic.model / src / net / mograsim / logic / model / model / components / atomic / ModelFixedOutput.java
index b889fad..1d3bb1e 100644 (file)
@@ -31,10 +31,12 @@ public class ModelFixedOutput extends ModelComponent
 
        public ModelFixedOutput(LogicModelModifiable model, BitVector bits, String name)
        {
-               super(model, name);
+               super(model, name, false);
                this.bits = bits;
                setSize(width, height);
                addPin(new Pin(model, this, "out", bits.length(), PinUsage.OUTPUT, width, height / 2));
+
+               init();
        }
 
        @Override