fa5b626479f7c4b4778fd1aac0ce09252664b538
[Mograsim.git] / net.mograsim.plugin.core / src / net / mograsim / plugin / memory / MemoryTableRow.java
1 package net.mograsim.plugin.memory;
2
3 import net.mograsim.machine.MainMemory;
4
5 public class MemoryTableRow
6 {
7         public final long address;
8         private final MainMemory memory;
9
10         public MemoryTableRow(long address, MainMemory memory)
11         {
12                 this.address = address;
13                 this.memory = memory;
14         }
15
16         public MainMemory getMemory()
17         {
18                 return memory;
19         }
20 }