Made Wire.fuse(Wire, Wire, int, int int) public
authorDaniel Kirschten <daniel.kirschten@gmx.de>
Fri, 21 Jun 2019 21:33:37 +0000 (23:33 +0200)
committerDaniel Kirschten <daniel.kirschten@gmx.de>
Fri, 21 Jun 2019 21:33:37 +0000 (23:33 +0200)
net.mograsim.logic.core/src/net/mograsim/logic/core/wires/Wire.java

index 479054a..fc7d346 100644 (file)
@@ -556,7 +556,7 @@ public class Wire
         * @param fromB  The first bit of {@link Wire} b to be fused
         * @param length The amount of bits to fuse
         */
-       private static void fuse(Wire a, Wire b, int fromA, int fromB, int length)
+       public static void fuse(Wire a, Wire b, int fromA, int fromB, int length)
        {
                ReadWriteEnd rA = a.createReadWriteEnd(), rB = b.createReadWriteEnd();
                rA.setWriting(false);