Exemplo n.º 1
0
 private void LoadDebugFile()
 {
     if (Options.DebugFile != null && File.Exists(Options.DebugFile))
     {
         LoadDebugData.LoadDebugInfo(Options.DebugFile, DebugSource);
     }
 }
Exemplo n.º 2
0
 private void LoadDebugFile()
 {
     if (DebugFile != null && File.Exists(DebugFile))
     {
         DebugSource = new DebugSource();
         LoadDebugData.LoadDebugInfo(DebugFile, DebugSource);
     }
 }
Exemplo n.º 3
0
 private void LoadDebugFile()
 {
     if (LauncherOptions.DebugFile != null && File.Exists(LauncherOptions.DebugFile))
     {
         DebugSource = new DebugSource();
         LoadDebugData.LoadDebugInfo(LauncherOptions.DebugFile, DebugSource);
     }
 }
Exemplo n.º 4
0
        private void MainForm_Load(object sender, EventArgs e)
        {
            dockPanel.SuspendLayout(true);
            dockPanel.DockTopPortion = 75;

            controlView.Show(dockPanel, DockState.DockTop);
            statusView.Show(controlView.PanelPane, DockAlignment.Right, 0.50);

            breakPointView.Show(dockPanel, DockState.DockBottom);
            watchView.Show(breakPointView.PanelPane, DockAlignment.Right, 0.50);

            displayView.Show(dockPanel, DockState.Document);
            outputView.Show(dockPanel, DockState.Document);

            //scriptView.Show(dockPanel, DockState.Document);
            registersView.Show(dockPanel, DockState.DockRight);

            //flagView.Show(dockPanel, DockState.DockRight);
            //stackView.Show(dockPanel, DockState.DockRight);
            stackFrameView.Show(dockPanel, DockState.DockRight);

            var memoryView = new MemoryView(this);

            memoryView.Show(dockPanel, DockState.Document);
            symbolView.Show(dockPanel, DockState.Document);

            instructionView.Show(symbolView.PanelPane, DockAlignment.Right, 0.35);
            methodView.Show(instructionView.PanelPane, instructionView);
            callStackView.Show(instructionView.PanelPane, DockAlignment.Bottom, 0.25);

            registersView.Show();

            dockPanel.ResumeLayout(true, true);

            if (Options.AutoConnect)
            {
                Connect();
            }

            if (Options.DebugInfoFile != null)
            {
                LoadDebugData.LoadDebugInfo(Options.DebugInfoFile, DebugSource);
            }
        }