X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fexamples%2FSubmodelComponentTestbench.java;h=7218fecc2414e8e8eb90d5f04d16a53bc51b0a0d;hb=19ee1a7fdb06a1df65cd7df78fed935124496707;hp=95177b7b8af649cd9142b2c1a27a256afc30f604;hpb=5306a9be5a7d08a765aafdfbd466d302d560009b;p=Mograsim.git diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/examples/SubmodelComponentTestbench.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/examples/SubmodelComponentTestbench.java index 95177b7b..7218fecc 100644 --- a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/examples/SubmodelComponentTestbench.java +++ b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/examples/SubmodelComponentTestbench.java @@ -5,7 +5,7 @@ import net.mograsim.logic.ui.model.ViewModelModifiable; import net.mograsim.logic.ui.model.components.GUIBitDisplay; import net.mograsim.logic.ui.model.components.GUIManualSwitch; import net.mograsim.logic.ui.model.components.SimpleRectangularSubmodelComponent; -import net.mograsim.logic.ui.model.components.mi.nandbased.GUIfulladder; +import net.mograsim.logic.ui.model.components.mi.nandbased.am2901.GUIAm2901ALUInclDecode; import net.mograsim.logic.ui.model.wires.GUIWire; public class SubmodelComponentTestbench @@ -18,20 +18,20 @@ public class SubmodelComponentTestbench @SuppressWarnings("unused") // for GUIWires being created public static void createTestbench(ViewModelModifiable model) { - SimpleRectangularSubmodelComponent comp = new GUIfulladder(model); + SimpleRectangularSubmodelComponent comp = new GUIAm2901ALUInclDecode(model); comp.moveTo(100, 0); - for (int i = 0; i < comp.getInputPins().size(); i++) + for (int i = 0; i < comp.getInputPinNames().size(); i++) { GUIManualSwitch sw = new GUIManualSwitch(model); sw.moveTo(0, 20 * i); - new GUIWire(model, comp.getInputPins().get(i), sw.getOutputPin()); + new GUIWire(model, comp.getPin(comp.getInputPinNames().get(i)), sw.getOutputPin()); } - for (int i = 0; i < comp.getOutputPins().size(); i++) + for (int i = 0; i < comp.getOutputPinNames().size(); i++) { GUIBitDisplay bd = new GUIBitDisplay(model); bd.moveTo(200, 20 * i); - new GUIWire(model, comp.getOutputPins().get(i), bd.getInputPin()); + new GUIWire(model, comp.getPin(comp.getOutputPinNames().get(i)), bd.getInputPin()); } } } \ No newline at end of file