Changed Modelram5_12's HLS-IDs to have a trailing .q
[Mograsim.git] / plugins / net.mograsim.logic.model.am2900 / src / net / mograsim / logic / model / am2900 / components / Modelram5_12.java
index 53c9960..16c2077 100644 (file)
@@ -86,7 +86,7 @@ public class Modelram5_12 extends SimpleRectangularHardcodedModelComponent
                return (bits[0] == ONE ? 4 : 0) + (bits[1] == ONE ? 2 : 0) + (bits[2] == ONE ? 1 : 0);
        }
 
-       Pattern stateIDPattern = Pattern.compile("c(0[10][10]|100)");
+       Pattern stateIDPattern = Pattern.compile("c(0[10][10]|100).q");
 
        @Override
        protected Object getHighLevelState(Object state, String stateID)