aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Loaders/Executables/IExecutable.cs
blob: 73787b1d2471a823f65b9ec5cb24b6f0ad70ea8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.ObjectModel;

namespace Ryujinx.Core.Loaders.Executables
{
    public interface IExecutable
    {
        ReadOnlyCollection<byte> Text { get; }
        ReadOnlyCollection<byte> RO   { get; }
        ReadOnlyCollection<byte> Data { get; }

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