Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.machine / src / net / mograsim / machine / mi / parameters / ParameterClassification.java
index f98def9..c81f6e5 100644 (file)
@@ -6,20 +6,25 @@ public interface ParameterClassification
 {
        /**
         * Determines whether a {@link MicroInstructionParameter} is part of this class of parameters.
+        * 
         * @return true if the classification contains the Parameter, false otherwise
         */
        public default boolean conforms(MicroInstructionParameter param)
        {
-               return param.getType().equals(getExpectedType()) && param.getValue().width() == getExpectedBits();
+               return param.getType().equals(getExpectedType()) && param.getValue().length() == getExpectedBits();
        }
-       
+
        /**
         * @return The type of the parameters in this classification.
         */
        public ParameterType getExpectedType();
-       
+
        /**
         * @return The number of bits of the parameters in this classification.
         */
        public int getExpectedBits();
+
+       public MicroInstructionParameter parse(String toParse);
+
+       public MicroInstructionParameter getDefault();
 }