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

18 lines
395 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
uint TextOffset { get; }
uint RoOffset { get; }
uint DataOffset { get; }
uint BssOffset { get; }
uint BssSize { get; }
2018-02-05 00:08:20 +01:00
}
}