Finished MPROM support. Fixes #10
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / tables / memory / MemoryTableRow.java
index 81ee6e6..27af63c 100644 (file)
@@ -1,16 +1,16 @@
 package net.mograsim.plugin.tables.memory;
 
-import net.mograsim.machine.MainMemory;
+import net.mograsim.machine.BitVectorMemory;
 import net.mograsim.plugin.tables.TableRow;
 
-public class MemoryTableRow extends TableRow<MainMemory>
+public class MemoryTableRow extends TableRow<BitVectorMemory>
 {
-       public MemoryTableRow(long address, MainMemory memory)
+       public MemoryTableRow(long address, BitVectorMemory memory)
        {
                super(address, memory);
        }
 
-       public MainMemory getMemory()
+       public BitVectorMemory getMemory()
        {
                return getData();
        }