Timeline now passed via constructor
[Mograsim.git] / era.mi / src / era / mi / logic / components / Demux.java
index ffc1bba..c67756a 100644 (file)
@@ -2,8 +2,10 @@ package era.mi.logic.components;
 \r
 import java.util.List;\r
 \r
+import era.mi.logic.timeline.Timeline;\r
 import era.mi.logic.wires.Wire;\r
-import era.mi.logic.wires.Wire.WireEnd;\r
+import era.mi.logic.wires.Wire.ReadEnd;\r
+import era.mi.logic.wires.Wire.ReadWriteEnd;\r
 \r
 /**\r
  * Models a multiplexer. Takes an arbitrary amount of input {@link Wire}s, one of which, as determined by select, is put through to the\r
@@ -14,8 +16,8 @@ import era.mi.logic.wires.Wire.WireEnd;
  */\r
 public class Demux extends BasicComponent\r
 {\r
-       private final WireEnd select, in;\r
-       private final WireEnd[] outputs;\r
+       private final ReadEnd select, in;\r
+       private final ReadWriteEnd[] outputs;\r
        private final int outputSize;\r
        private int selected = -1;\r
 \r
@@ -26,9 +28,9 @@ public class Demux extends BasicComponent
         * @param select  Indexes the output array to which the input is mapped. Must have enough bits to index all outputs.\r
         * @param outputs One of these outputs receives the input signal, depending on the select bits\r
         */\r
-       public Demux(int processTime, WireEnd in, WireEnd select, WireEnd... outputs)\r
+       public Demux(Timeline timeline, int processTime, ReadEnd in, ReadEnd select, ReadWriteEnd... outputs)\r
        {\r
-               super(processTime);\r
+               super(timeline, processTime);\r
                outputSize = in.length();\r
 \r
                this.in = in;\r
@@ -67,13 +69,13 @@ public class Demux extends BasicComponent
        }\r
 \r
        @Override\r
-       public List<WireEnd> getAllInputs()\r
+       public List<ReadEnd> getAllInputs()\r
        {\r
                return List.of(in, select);\r
        }\r
 \r
        @Override\r
-       public List<WireEnd> getAllOutputs()\r
+       public List<ReadWriteEnd> getAllOutputs()\r
        {\r
                return List.of(outputs);\r
        }\r