X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=plugins%2Fnet.mograsim.plugin.core%2Fsrc%2Fnet%2Fmograsim%2Fplugin%2Ftables%2Fmemory%2FMemoryTableRow.java;h=27af63c352e0680f43dc0bb0d1253d2a39091a08;hb=648fc6e69e09fe4467cb6bac47934be1a7dcf0d6;hp=81ee6e65b34fac327a74af5c77fa409701c2a9c8;hpb=7d05144c25daa53e60fc9ed9fd503546a86567f8;p=Mograsim.git diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/memory/MemoryTableRow.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/memory/MemoryTableRow.java index 81ee6e65..27af63c3 100644 --- a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/memory/MemoryTableRow.java +++ b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/memory/MemoryTableRow.java @@ -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 +public class MemoryTableRow extends TableRow { - public MemoryTableRow(long address, MainMemory memory) + public MemoryTableRow(long address, BitVectorMemory memory) { super(address, memory); } - public MainMemory getMemory() + public BitVectorMemory getMemory() { return getData(); }