aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
blob: 76a550df7175df08c770e4b698993669accc2f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace Ryujinx.HLE.Loaders.Executables
{
    interface IExecutable
    {
        byte[] Program { get; }        
        Span<byte> Text { get; }
        Span<byte> Ro   { get; }
        Span<byte> Data { get; }

        int TextOffset { get; }
        int RoOffset   { get; }
        int DataOffset { get; }
        int BssOffset  { get; }
        int BssSize    { get; }
    }
}