MPROMEditor now calls its columns "Opcode" and "muPC"
[Mograsim.git] / plugins / net.mograsim.machine / src / net / mograsim / machine / mi / parameters / MicroInstructionParameter.java
1 package net.mograsim.machine.mi.parameters;
2
3 import net.mograsim.logic.core.types.BitVector;
4
5 public interface MicroInstructionParameter
6 {
7         public BitVector getValue();
8
9         public ParameterType getType();
10
11         public boolean isDefault();
12
13         public static enum ParameterType
14         {
15                 INTEGER_IMMEDIATE, BOOLEAN_IMMEDIATE, MNEMONIC
16         }
17 }