mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-11 12:47:51 +02:00
Support loading NSO/NRO without a MOD0 header, stub some functions, support more ids on SvcGetInfo
This commit is contained in:
@@ -2,7 +2,7 @@ using System.Collections.ObjectModel;
|
||||
|
||||
namespace Ryujinx.Loaders.Executables
|
||||
{
|
||||
interface IElf
|
||||
interface IExecutable
|
||||
{
|
||||
ReadOnlyCollection<byte> Text { get; }
|
||||
ReadOnlyCollection<byte> RO { get; }
|
@@ -4,7 +4,7 @@ using System.IO;
|
||||
|
||||
namespace Ryujinx.Loaders.Executables
|
||||
{
|
||||
class Nro : IElf
|
||||
class Nro : IExecutable
|
||||
{
|
||||
private byte[] m_Text;
|
||||
private byte[] m_RO;
|
||||
|
@@ -5,7 +5,7 @@ using System.IO;
|
||||
|
||||
namespace Ryujinx.Loaders.Executables
|
||||
{
|
||||
class Nso : IElf
|
||||
class Nso : IExecutable
|
||||
{
|
||||
private byte[] m_Text;
|
||||
private byte[] m_RO;
|
||||
|
Reference in New Issue
Block a user