X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=plugins%2Fnet.mograsim.plugin.core%2Fsrc%2Fnet%2Fmograsim%2Fplugin%2Ftables%2Fmi%2FInstructionTableContentProvider.java;h=6519b6282398badb9e8a100e65a1919c8f3a53ef;hb=95b1269b5d1ff51f4321e2182d3c37efa6ae093a;hp=b8021b74a31e7d91e30e9ce8ca3c537f52b2809e;hpb=e7c51111e07a9e499eb3a17d784addd426e0ca43;p=Mograsim.git diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/InstructionTableContentProvider.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/InstructionTableContentProvider.java index b8021b74..6519b628 100644 --- a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/InstructionTableContentProvider.java +++ b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/tables/mi/InstructionTableContentProvider.java @@ -16,7 +16,7 @@ public class InstructionTableContentProvider implements ILazyContentProvider public void updateElement(int index) { long address = memory.getDefinition().getMinimalAddress() + index; - viewer.replace(new InstructionTableRow(address, memory.getCell(address)), index); + viewer.replace(new InstructionTableRow(address, memory), index); } @Override