1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-21 22:44:36 +01:00
Ryujinx/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

20 lines
445 B
C#
Raw Normal View History

namespace Ryujinx.HLE.Loaders.Executables
2018-02-04 23:08:20 +00:00
{
public interface IExecutable
2018-02-04 23:08:20 +00:00
{
string FilePath { get; }
byte[] Text { get; }
byte[] RO { get; }
byte[] Data { get; }
2018-02-04 23:08:20 +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; }
}
}