X-Git-Url: https://mograsim.net/gitweb/?p=Mograsim.git;a=blobdiff_plain;f=plugins%2Fnet.mograsim.plugin.core%2Fsrc%2Fnet%2Fmograsim%2Fplugin%2Ftables%2Fmemory%2FMemoryTableRow.java;h=27af63c352e0680f43dc0bb0d1253d2a39091a08;hp=81ee6e65b34fac327a74af5c77fa409701c2a9c8;hb=b5d55c59d7069171bd928e4a945d9185ee4bc2b0;hpb=f098cd47d06be0cc654532a5fad0e5e89f0ef93c 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(); }