81ee6e65b34fac327a74af5c77fa409701c2a9c8
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / tables / memory / MemoryTableRow.java
1 package net.mograsim.plugin.tables.memory;
2
3 import net.mograsim.machine.MainMemory;
4 import net.mograsim.plugin.tables.TableRow;
5
6 public class MemoryTableRow extends TableRow<MainMemory>
7 {
8         public MemoryTableRow(long address, MainMemory memory)
9         {
10                 super(address, memory);
11         }
12
13         public MainMemory getMemory()
14         {
15                 return getData();
16         }
17 }