Changed GUIMerger/Splitter read end array order; removed resolved TODO
[Mograsim.git] / net.mograsim.logic.core / src / net / mograsim / logic / core / wires / Wire.java
index 4063d78..15755ae 100644 (file)
@@ -637,7 +637,7 @@ public class Wire
         * @param bitA The bit of {@link Wire} a to be fused
         * @param bitB The bit of {@link Wire} b to be fused
         */
-       private static void fuse(Wire a, Wire b, int bitA, int bitB)
+       public static void fuse(Wire a, Wire b, int bitA, int bitB)
        {
                if (bitA >= a.width)
                        throw new IllegalArgumentException("No bit " + bitA + " in " + a + " (width " + a.width + ")");