Drivers.Debugger.App.MainForm.UpdateRegisters()

Here are the examples of the csharp api class Drivers.Debugger.App.MainForm.UpdateRegisters() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: FlingOS
Source File: MainForm.cs
private void RefreshRegisters()
        {
            if (IsSelectionDebugging())
            {
                Registers = TheDebugger.GetRegisters(GetSelectedProcessId(), (uint)GetSelectedThreadId());
            }
            else
            {
                Registers.Clear();
            }

            UpdateRegisters();

            RefreshNearestLabel();
        }