2019-03-23 21:56:35 -04:00
|
|
|
|
using Mesen.GUI.Debugger.Controls;
|
2019-05-04 09:33:28 -04:00
|
|
|
|
using Mesen.GUI.Debugger.Integration;
|
2019-03-23 21:56:35 -04:00
|
|
|
|
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; }
|
|
|
|
|
|
2019-04-07 12:25:14 -04:00
|
|
|
|
int AddressSize { get; }
|
|
|
|
|
int ByteCodeSize { get; }
|
2019-05-04 09:33:28 -04:00
|
|
|
|
bool AllowSourceView { get; }
|
2019-04-07 12:25:14 -04:00
|
|
|
|
|
2019-05-04 09:33:28 -04:00
|
|
|
|
void RefreshCode(DbgImporter symbolProvider, DbgImporter.FileInfo file);
|
2019-03-23 21:56:35 -04:00
|
|
|
|
void ToggleBreakpoint(int lineIndex);
|
2019-03-30 21:47:30 -04:00
|
|
|
|
void EnableDisableBreakpoint(int lineIndex);
|
2019-05-04 13:54:17 -04:00
|
|
|
|
|
|
|
|
|
Dictionary<string, string> GetTooltipData(string word, int lineIndex);
|
2019-03-23 21:56:35 -04:00
|
|
|
|
}
|
|
|
|
|
}
|