X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.model%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fmodel%2Fmodel%2Fcomponents%2Fatomic%2FModelFixedOutput.java;h=1d3bb1eea4671f9ccbbe4ac8fd81454d9cc2d9de;hb=92862c4723c5eff22257e8de06166a124efb5d77;hp=b889fada6f4e5f6633774cdedfa657408adc754f;hpb=1f645882d229fc3d4081e4c5060559d75dc2cc24;p=Mograsim.git diff --git a/net.mograsim.logic.model/src/net/mograsim/logic/model/model/components/atomic/ModelFixedOutput.java b/net.mograsim.logic.model/src/net/mograsim/logic/model/model/components/atomic/ModelFixedOutput.java index b889fada..1d3bb1ee 100644 --- a/net.mograsim.logic.model/src/net/mograsim/logic/model/model/components/atomic/ModelFixedOutput.java +++ b/net.mograsim.logic.model/src/net/mograsim/logic/model/model/components/atomic/ModelFixedOutput.java @@ -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