2019-03-23 21:56:35 -04:00
|
|
|
|
using Mesen.GUI.Debugger.Controls;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Mesen.GUI.Debugger.Code
|
|
|
|
|
{
|
|
|
|
|
public interface IDisassemblyManager
|
|
|
|
|
{
|
|
|
|
|
ICodeDataProvider Provider { get; }
|
|
|
|
|
|
|
|
|
|
void RefreshCode();
|
|
|
|
|
void ToggleBreakpoint(int lineIndex);
|
2019-03-30 21:47:30 -04:00
|
|
|
|
void EnableDisableBreakpoint(int lineIndex);
|
2019-03-23 21:56:35 -04:00
|
|
|
|
}
|
|
|
|
|
}
|