The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / tables / mi / InstructionTableRow.java
diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/InstructionTableRow.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/InstructionTableRow.java
new file mode 100644 (file)
index 0000000..677d166
--- /dev/null
@@ -0,0 +1,12 @@
+package net.mograsim.plugin.tables.mi;
+
+import net.mograsim.machine.mi.MicroInstruction;
+import net.mograsim.plugin.tables.TableRow;
+
+public class InstructionTableRow extends TableRow<MicroInstruction>
+{
+       public InstructionTableRow(long address, MicroInstruction data)
+       {
+               super(address, data);
+       }
+}