Files
Ryujinx-greemdev/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
2023-04-27 23:51:14 +02:00

18 lines
395 B
C#

using System;
namespace Ryujinx.HLE.Loaders.Executables
{
interface IExecutable
{
byte[] Program { get; }
Span<byte> Text { get; }
Span<byte> Ro { get; }
Span<byte> Data { get; }
uint TextOffset { get; }
uint RoOffset { get; }
uint DataOffset { get; }
uint BssOffset { get; }
uint BssSize { get; }
}
}