Finished MPROM support. Fixes #10
[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.BitVectorMemory;
4 import net.mograsim.plugin.tables.TableRow;
5
6 public class MemoryTableRow extends TableRow<BitVectorMemory>
7 {
8         public MemoryTableRow(long address, BitVectorMemory memory)
9         {
10                 super(address, memory);
11         }
12
13         public BitVectorMemory getMemory()
14         {
15                 return getData();
16         }
17 }