aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Loaders/Executables/IExecutable.cs')
-rw-r--r--Ryujinx.HLE/Loaders/Executables/IExecutable.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/Ryujinx.HLE/Loaders/Executables/IExecutable.cs b/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
index 6f0952ab..d3eefde6 100644
--- a/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
+++ b/Ryujinx.HLE/Loaders/Executables/IExecutable.cs
@@ -1,20 +1,15 @@
namespace Ryujinx.HLE.Loaders.Executables
{
- public interface IExecutable
+ interface IExecutable
{
- string FilePath { get; }
-
byte[] Text { get; }
byte[] RO { get; }
byte[] Data { get; }
- long SourceAddress { get; }
- long BssAddress { get; }
-
- int Mod0Offset { get; }
int TextOffset { get; }
int ROOffset { get; }
int DataOffset { get; }
+ int BssOffset { get; }
int BssSize { get; }
}
} \ No newline at end of file