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/Executable.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/Executable.cs')
| -rw-r--r-- | Ryujinx.Core/Loaders/Executable.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Ryujinx.Core/Loaders/Executable.cs b/Ryujinx.Core/Loaders/Executable.cs index 25a62136..e2660838 100644 --- a/Ryujinx.Core/Loaders/Executable.cs +++ b/Ryujinx.Core/Loaders/Executable.cs @@ -13,7 +13,6 @@ namespace Ryujinx.Core.Loaders public long ImageBase { get; private set; } public long ImageEnd { get; private set; } - public Extensions Extension { get; private set; } public Executable(IExecutable Exe, AMemory Memory, long ImageBase) { @@ -47,8 +46,6 @@ namespace Ryujinx.Core.Loaders long EhHdrEndOffset = Memory.ReadInt32(Mod0Offset + 0x14) + Mod0Offset; long ModObjOffset = Memory.ReadInt32(Mod0Offset + 0x18) + Mod0Offset; - Extension = Exe.Extension; - MapBss(BssStartOffset, BssEndOffset - BssStartOffset); ImageEnd = BssEndOffset; |
