aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
blob: 6f0952abdbcc291e0c166c3f94e741a7fcdab325 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Ryujinx.HLE.Loaders.Executables
{
    public interface IExecutable
    {
        string FilePath { get; }

        byte[] Text { get; }
        byte[] RO   { get; }
        byte[] Data { get; }

        long SourceAddress { get; }
        long BssAddress    { get; }

        int Mod0Offset { get; }
        int TextOffset { get; }
        int ROOffset   { get; }
        int DataOffset { get; }
        int BssSize    { get; }
    }
}