Added project specific format; Default values in WireArray are now U
[Mograsim.git] / era.mi / src / era / mi / logic / components / gates / XorGate.java
index c20af6f..ad2f829 100644 (file)
@@ -5,10 +5,11 @@ import era.mi.logic.wires.WireArray;
 
 /**
  * Outputs 1 when the number of 1 inputs is odd.
+ * 
  * @author Fabian Stemmler
  */
 public class XorGate extends MultiInputGate
-{      
+{
        public XorGate(int processTime, WireArray out, WireArray... in)
        {
                super(processTime, Util::xor, out, in);