WireArray(Input) is now Wire(End); all in-/outputs are now WireEnds
[Mograsim.git] / era.mi / src / era / mi / logic / components / gates / XorGate.java
index 1a63e8b..d87f147 100644 (file)
@@ -1,7 +1,7 @@
 package era.mi.logic.components.gates;\r
 \r
 import era.mi.logic.Util;\r
-import era.mi.logic.wires.WireArray;\r
+import era.mi.logic.wires.Wire.WireEnd;\r
 \r
 /**\r
  * Outputs 1 when the number of 1 inputs is odd.\r
@@ -10,7 +10,7 @@ import era.mi.logic.wires.WireArray;
  */\r
 public class XorGate extends MultiInputGate\r
 {\r
-       public XorGate(int processTime, WireArray out, WireArray... in)\r
+       public XorGate(int processTime, WireEnd out, WireEnd... in)\r
        {\r
                super(processTime, Util::xor, out, in);\r
        }\r