Made MicroInstructions immutable
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / tables / mi / InstructionTableContentProvider.java
index b8021b7..6519b62 100644 (file)
@@ -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