diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-02-23 21:59:38 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-02-23 21:59:38 -0300 |
| commit | 3936c934482a587635bc5a1e47962551aeb53aeb (patch) | |
| tree | 7df4ab78fe30ea27edcda9e54a32a8d132717225 /Ryujinx.Core/Loaders/Executables/IExecutable.cs | |
| parent | 2ed733b1d5addad027f48acfdd407e64b71427fc (diff) | |
Map heap on heap base region, fix for thread start on homebrew, add FCVTMU and FCVTPU (general) instructions, fix FMOV (higher 64 bits) encodings, improve emit code for FCVT* (general) instructions
Diffstat (limited to 'Ryujinx.Core/Loaders/Executables/IExecutable.cs')
| -rw-r--r-- | Ryujinx.Core/Loaders/Executables/IExecutable.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Ryujinx.Core/Loaders/Executables/IExecutable.cs b/Ryujinx.Core/Loaders/Executables/IExecutable.cs index f6aa31ac..73787b1d 100644 --- a/Ryujinx.Core/Loaders/Executables/IExecutable.cs +++ b/Ryujinx.Core/Loaders/Executables/IExecutable.cs @@ -2,12 +2,6 @@ using System.Collections.ObjectModel; namespace Ryujinx.Core.Loaders.Executables { - public enum Extensions - { - NRO, - NSO - } - public interface IExecutable { ReadOnlyCollection<byte> Text { get; } @@ -19,7 +13,5 @@ namespace Ryujinx.Core.Loaders.Executables int ROOffset { get; } int DataOffset { get; } int BssSize { get; } - - Extensions Extension { get; } } }
\ No newline at end of file |
