Made Am2910 components usable in Editor
[Mograsim.git] / net.mograsim.logic.model.am2900 / src / net / mograsim / logic / model / am2900 / components / am2910 / GUIAm2910RegCntr.java
index ec900c0..3c1ca2e 100644 (file)
@@ -13,6 +13,7 @@ import net.mograsim.logic.core.wires.Wire.ReadWriteEnd;
 import net.mograsim.logic.model.model.ViewModelModifiable;
 import net.mograsim.logic.model.model.components.atomic.SimpleRectangularHardcodedGUIComponent;
 import net.mograsim.logic.model.model.wires.Pin;
+import net.mograsim.logic.model.serializing.IndirectGUIComponentCreator;
 import net.mograsim.logic.model.snippets.symbolrenderers.PinNamesSymbolRenderer.PinNamesParams.Position;
 
 public class GUIAm2910RegCntr extends SimpleRectangularHardcodedGUIComponent
@@ -49,13 +50,17 @@ public class GUIAm2910RegCntr extends SimpleRectangularHardcodedGUIComponent
                Bit oldCVal = QC[12];
                Bit CVal = C.getValue();
 
-               if (oldCVal == ZERO && CVal == ONE && _RLD.getValue() == ZERO && RWE.getValue() == ONE)
+               // TODO handle U/X/Z
+               if (oldCVal == ZERO && CVal == ONE)
                {
-                       if (RDEC.getValue() == ONE)
+                       if ((RDEC.getValue() == ZERO && RWE.getValue() == ONE) || _RLD.getValue() == ZERO)
+                               System.arraycopy(D.getValues().getBits(), 0, QC, 0, 12);
+                       else if (RWE.getValue() == ONE)
                        {
                                Bit carry = Bit.ZERO;
+                               // TODO extract to helper. This code almost also exists in GUIinc12.
                                // TODO maybe invert loop direction
-                               for (int i = 12; i >= 0; i--)
+                               for (int i = 11; i >= 0; i--)
                                {
                                        Bit a = QC[i];
                                        Bit z;
@@ -72,12 +77,17 @@ public class GUIAm2910RegCntr extends SimpleRectangularHardcodedGUIComponent
                                        }
                                        QC[i] = z;
                                }
-                       } else
-                               System.arraycopy(D.getValues().getBits(), 0, QC, 0, 12);
+                       }
                }
                QC[12] = CVal;
                Y.feedSignals(Arrays.copyOfRange(QC, 0, 12));
 
                return QC;
        }
+
+       static
+       {
+               IndirectGUIComponentCreator.setComponentSupplier(GUIAm2910RegCntr.class.getCanonicalName(),
+                               (m, p, n) -> new GUIAm2910RegCntr(m, n));
+       }
 }
\ No newline at end of file