示例#1
0
 public void Refresh()
 {
     Current = new CpuStateViewModel(_console.Cpu);
     foreach (var breakpoint in Breakpoints)
     {
         _console.SetBreakpoint(breakpoint);
     }
 }
示例#2
0
        private void EndStep()
        {
            _mmuByteProvider.InvokeChanged();
            InvalidateHexBox?.Invoke();
            if (TrackPc)
            {
                FocusHexBox?.Invoke(_console.Cpu.PC);
            }
            Current = new CpuStateViewModel(_console.Cpu);
            NotifyAll();

            ProgressVisible = false;
            EnableDebugger  = true;
        }
        private void EndStep()
        {
            _mmuByteProvider.InvokeChanged();
            InvalidateHexBox?.Invoke();
            if (TrackPc)
            {
                FocusHexBox?.Invoke(_console.Cpu.PC);
            }
            Current = new CpuStateViewModel(_console.Cpu);
            NotifyAll();

            ProgressVisible = false;
            EnableDebugger = true;
        }
 public void Refresh()
 {
     Current = new CpuStateViewModel(_console.Cpu);
     foreach (var breakpoint in Breakpoints)
     {
         _console.SetBreakpoint(breakpoint);
     }
 }