1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 22:13:35 +01:00
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-04 23:08:20 +00:00
{
interface IExecutable
2018-02-04 23:08:20 +00:00
{
byte[] Program { get; }
Span<byte> Text { get; }
Span<byte> Ro { get; }
Span<byte> Data { get; }
2018-02-04 23:08:20 +00:00
uint TextOffset { get; }
uint RoOffset { get; }
uint DataOffset { get; }
uint BssOffset { get; }
uint BssSize { get; }
2018-02-04 23:08:20 +00:00
}
}