X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.model.am2900%2Ftest%2Fnet%2Fmograsim%2Flogic%2Fmodel%2Fam2900%2FAm2901Testbench.java;h=731147ceae43bcc42f1c5f9f4bb4e4ebe1e77c33;hb=466a1f49e8a4f231edecf4c6bc726ea68766f1be;hp=7939eaec19997a366db93cf97e25a92cc9b68e26;hpb=c84bfeca6264b1c02ed500fb0a2f421133b9766f;p=Mograsim.git diff --git a/net.mograsim.logic.model.am2900/test/net/mograsim/logic/model/am2900/Am2901Testbench.java b/net.mograsim.logic.model.am2900/test/net/mograsim/logic/model/am2900/Am2901Testbench.java index 7939eaec..731147ce 100644 --- a/net.mograsim.logic.model.am2900/test/net/mograsim/logic/model/am2900/Am2901Testbench.java +++ b/net.mograsim.logic.model.am2900/test/net/mograsim/logic/model/am2900/Am2901Testbench.java @@ -31,7 +31,7 @@ public class Am2901Testbench comp.moveTo(240, 0); - GUIManualSwitch enable = new GUIManualSwitch(model); + GUIManualSwitch enable = new GUIManualSwitch(model, 1); WireCrossPoint wcp0 = new WireCrossPoint(model, 1); GUINotGate not1 = new GUINotGate(model, 1); GUINotGate not2 = new GUINotGate(model, 1); @@ -52,7 +52,7 @@ public class Am2901Testbench Pin last = and.getPin("Y"); // guess which pins are outputs and which are inputs - // TODO this code exists three times... but it seems too "hacky" to put it in a helper class + // TODO this code exists four times... but it seems too "hacky" to put it in a helper class List inputPinNames = new ArrayList<>(); List outputPinNames = new ArrayList<>(); for (Pin p : comp.getPins().values()) @@ -71,7 +71,7 @@ public class Am2901Testbench WireCrossPoint wcp = new WireCrossPoint(model, 1); GUIComponent d_ff = IndirectGUIComponentCreator.createComponent(model, "GUIdff"); - GUIManualSwitch sw = new GUIManualSwitch(model); + GUIManualSwitch sw = new GUIManualSwitch(model, 1); tool.connect(last, wcp); tool.connect(wcp, d_ff, "C"); @@ -84,19 +84,19 @@ public class Am2901Testbench sw.moveTo(x, y + 7.5); wcp.moveTo(160, y); d_ff.moveTo(170, y); - label.moveTo(x - 25, y + 15); + label.moveTo(x - 48, y + 8); } for (int i = 0; i < outputPinNames.size(); i++) { double x = 300 + 75 * (i % 2); double y = 10 * i - 2.5; - GUIBitDisplay bd = new GUIBitDisplay(model); + GUIBitDisplay bd = new GUIBitDisplay(model, 1); bd.moveTo(x, y); tool.connect(bd.getInputPin(), comp, outputPinNames.get(i)); TextComponent label = new TextComponent(model, outputPinNames.get(i)); - label.moveTo(x + 50, y + 8); + label.moveTo(x + 25, y); } } } \ No newline at end of file