2018-06-11 01:46:42 +01: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 20:14:27 +01:00
|
|
|
string FilePath { get; }
|
2018-04-22 05:21:49 +01: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-10 00:01:49 +01: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; }
|
|
|
|
}
|
|
|
|
}
|