2018-06-10 18:46:42 -06:00
|
|
|
namespace Ryujinx.HLE.Loaders.Executables
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-02-20 13:09:23 -07:00
|
|
|
public interface IExecutable
|
2018-02-04 16:08:20 -07:00
|
|
|
{
|
2018-07-17 13:14:27 -06:00
|
|
|
string FilePath { get; }
|
2018-04-21 22:21:49 -06:00
|
|
|
|
2018-03-10 16:39:16 -07:00
|
|
|
byte[] Text { get; }
|
|
|
|
byte[] RO { get; }
|
|
|
|
byte[] Data { get; }
|
2018-02-04 16:08:20 -07:00
|
|
|
|
2018-10-09 17:01:49 -06:00
|
|
|
long SourceAddress { get; }
|
|
|
|
long BssAddress { get; }
|
|
|
|
|
2018-02-04 16:08:20 -07:00
|
|
|
int Mod0Offset { get; }
|
|
|
|
int TextOffset { get; }
|
|
|
|
int ROOffset { get; }
|
|
|
|
int DataOffset { get; }
|
|
|
|
int BssSize { get; }
|
|
|
|
}
|
|
|
|
}
|