4966b139c35e87b4f4fc72cf2e6673b13c57896b
[Mograsim.git] / InstructionTableRow.java
1 package net.mograsim.plugin.tables.mi;
2
3 import net.mograsim.machine.mi.MicroInstructionMemory;
4 import net.mograsim.plugin.tables.TableRow;
5
6 public class InstructionTableRow extends TableRow<MicroInstructionMemory>
7 {
8         public InstructionTableRow(long address, MicroInstructionMemory data)
9         {
10                 super(address, data);
11         }
12 }