Move solution and projects to src
This commit is contained in:
18
src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
Normal file
18
src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user