mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
18 lines
401 B
C#
18 lines
401 B
C#
using Mesen.Debugger.Integration;
|
|
using Mesen.Debugger.Labels;
|
|
using Mesen.Interop;
|
|
|
|
namespace Mesen.Debugger.Disassembly
|
|
{
|
|
public class LocationInfo
|
|
{
|
|
public AddressInfo? RelAddress;
|
|
public AddressInfo? AbsAddress;
|
|
public CodeLabel? Label;
|
|
public int? LabelAddressOffset;
|
|
public SourceSymbol? Symbol;
|
|
public SourceCodeLocation? SourceLocation;
|
|
|
|
public int? ArrayIndex = null;
|
|
}
|
|
}
|