Added a constructor for ModelSplitterParams; added a TODO
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / tables / mi / InstructionTableRow.java
index 677d166..4966b13 100644 (file)
@@ -1,12 +1,12 @@
 package net.mograsim.plugin.tables.mi;
 
-import net.mograsim.machine.mi.MicroInstruction;
+import net.mograsim.machine.mi.MicroInstructionMemory;
 import net.mograsim.plugin.tables.TableRow;
 
-public class InstructionTableRow extends TableRow<MicroInstruction>
+public class InstructionTableRow extends TableRow<MicroInstructionMemory>
 {
-       public InstructionTableRow(long address, MicroInstruction data)
+       public InstructionTableRow(long address, MicroInstructionMemory data)
        {
                super(address, data);
        }
-}
+}
\ No newline at end of file