677d166870b1977b58527dc57c05e8880728d70e
[Mograsim.git] / 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 }