From: Daniel Kirschten Date: Sat, 10 Aug 2019 12:03:13 +0000 (+0200) Subject: Added comments for STKI[10]Val X-Git-Url: https://mograsim.net/gitweb/?a=commitdiff_plain;h=ae82c31570349e250cdc0d21ae18730343d92880;p=Mograsim.git Added comments for STKI[10]Val --- 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..20ae560e 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 @@ -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;