From 7466dbebfdfa536d24fbf3994d068abc27d77e99 Mon Sep 17 00:00:00 2001 From: Christian Femers Date: Mon, 14 Oct 2019 23:23:35 +0200 Subject: [PATCH] Automatically add the default Mograsim memory block to the launch --- .../net/mograsim/plugin/launch/MachineLaunchConfigType.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/launch/MachineLaunchConfigType.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/launch/MachineLaunchConfigType.java index 286975a6..5622ca6d 100644 --- a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/launch/MachineLaunchConfigType.java +++ b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/launch/MachineLaunchConfigType.java @@ -11,8 +11,10 @@ import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; +import org.eclipse.debug.core.DebugPlugin; import org.eclipse.debug.core.ILaunch; import org.eclipse.debug.core.ILaunchConfiguration; +import org.eclipse.debug.core.model.IMemoryBlock; import org.eclipse.debug.core.model.LaunchConfigurationDelegate; import org.eclipse.ui.statushandlers.StatusManager; @@ -125,6 +127,10 @@ public class MachineLaunchConfigType extends LaunchConfigurationDelegate debugTarget.setExecutionSpeed(1); machine = debugTarget.getMachine(); machine.reset(); + + // Add the default Mograsim memory block to make it less confusing and more comfortable. + DebugPlugin.getDefault().getMemoryBlockManager() + .addMemoryBlocks(new IMemoryBlock[] { new MainMemoryBlockExtension(debugTarget, "0", null) }); } } \ No newline at end of file -- 2.17.1