aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs')
-rw-r--r--src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs b/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
new file mode 100644
index 00000000..27479efe
--- /dev/null
+++ b/src/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
@@ -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; }
+ }
+} \ No newline at end of file