18 lines
395 B
C#
Raw Normal View History

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