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
1 package net.mograsim.plugin.tables.mi;
2
3 import net.mograsim.machine.mi.MicroInstruction;
4 import net.mograsim.plugin.tables.TableRow;
5
6 public class InstructionTableRow extends TableRow<MicroInstruction>
7 {
8         public InstructionTableRow(long address, MicroInstruction data)
9         {
10                 super(address, data);
11         }
12 }