Completely changed the structure and switched to Eclipse Plugin.
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / components / gates / NorGate.java
index cfadf46..5f6e185 100644 (file)
@@ -9,6 +9,6 @@ public class NorGate extends MultiInputGate
 {
        public NorGate(Timeline timeline, int processTime, ReadWriteEnd out, ReadEnd... in)
        {
-               super(timeline, processTime, BitVectorMutator::nor, out, in);
+               super(timeline, processTime, BitVectorMutator::or, true, out, in);
        }
 }