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