X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.model.am2900%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fmodel%2Fam2900%2Fcomponents%2Fam2910%2FGUIAm2910InstrPLA.java;h=b112d03204c459b0c25ba2443818f9cadd46ec55;hb=755dd287af38d41b225e5976466111bc69249edb;hp=9dd05b9f5b0769b39d8b47911149c84a276f83ba;hpb=662eb9515b9fcbccc4997f50fecfb597ee8eb316;p=Mograsim.git diff --git a/net.mograsim.logic.model.am2900/src/net/mograsim/logic/model/am2900/components/am2910/GUIAm2910InstrPLA.java b/net.mograsim.logic.model.am2900/src/net/mograsim/logic/model/am2900/components/am2910/GUIAm2910InstrPLA.java index 9dd05b9f..b112d032 100644 --- a/net.mograsim.logic.model.am2900/src/net/mograsim/logic/model/am2900/components/am2910/GUIAm2910InstrPLA.java +++ b/net.mograsim.logic.model.am2900/src/net/mograsim/logic/model/am2900/components/am2910/GUIAm2910InstrPLA.java @@ -41,7 +41,7 @@ public class GUIAm2910InstrPLA extends SimpleRectangularHardcodedGUIComponent } @Override - protected void recalculate(Map readEnds, Map readWriteEnds) + protected Object recalculate(Object lastState, Map readEnds, Map readWriteEnds) { ReadEnd PASS = readEnds.get("PASS"); ReadEnd I3 = readEnds.get("I3"); @@ -218,6 +218,7 @@ public class GUIAm2910InstrPLA extends SimpleRectangularHardcodedGUIComponent case 9 + 16: case 12 + 16: case 14 + 16: + // HOLD STKI1Val = ZERO; STKI0Val = ZERO; break; @@ -226,11 +227,13 @@ public class GUIAm2910InstrPLA extends SimpleRectangularHardcodedGUIComponent case 1 + 16: case 4 + 16: case 5 + 16: + // PUSH STKI1Val = ZERO; STKI0Val = ONE; break; case 0: case 0 + 16: + // CLEAR STKI1Val = ONE; STKI0Val = ZERO; break; @@ -238,6 +241,7 @@ public class GUIAm2910InstrPLA extends SimpleRectangularHardcodedGUIComponent case 11 + 16: case 13 + 16: case 15 + 16: + // POP STKI1Val = ONE; STKI0Val = ONE; break; @@ -254,5 +258,6 @@ public class GUIAm2910InstrPLA extends SimpleRectangularHardcodedGUIComponent STKI1.feedSignals(STKI1Val); } } + return null; } } \ No newline at end of file