Ryujinx/Ryujinx.HLE/Loaders/Executables/IExecutable.cs

18 lines
398 B
C#
Raw Normal View History

using System;
namespace Ryujinx.HLE.Loaders.Executables
2018-02-05 00:08:20 +01:00
{
interface IExecutable
2018-02-05 00:08:20 +01:00
{
byte[] Program { get; }
Span<byte> Text { get; }
Span<byte> Ro { get; }
Span<byte> Data { get; }
2018-02-05 00:08:20 +01:00
int TextOffset { get; }
int RoOffset { get; }
2018-02-05 00:08:20 +01:00
int DataOffset { get; }
int BssOffset { get; }
2018-02-05 00:08:20 +01:00
int BssSize { get; }
}
}