2018-02-04 23:08:20 +00:00
|
|
|
using System.IO;
|
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.Loaders.Executables
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-11-28 22:18:09 +00:00
|
|
|
class NxRelocatableObject : IExecutable
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
public byte[] Text { get; private set; }
|
2018-12-06 11:16:24 +00:00
|
|
|
public byte[] Ro { get; private set; }
|
2018-12-05 00:52:39 +00:00
|
|
|
public byte[] Data { get; private set; }
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public int Mod0Offset { get; private set; }
|
|
|
|
public int TextOffset { get; private set; }
|
2018-12-06 11:16:24 +00:00
|
|
|
public int RoOffset { get; private set; }
|
2018-12-05 00:52:39 +00:00
|
|
|
public int DataOffset { get; private set; }
|
|
|
|
public int BssSize { get; private set; }
|
2019-02-14 00:44:39 +00:00
|
|
|
public int FileSize { get; private set; }
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-11-28 22:18:09 +00:00
|
|
|
public int BssOffset => DataOffset + Data.Length;
|
|
|
|
|
2018-12-05 00:52:39 +00:00
|
|
|
public ulong SourceAddress { get; private set; }
|
|
|
|
public ulong BssAddress { get; private set; }
|
2018-10-09 23:01:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
public NxRelocatableObject(Stream input, ulong sourceAddress = 0, ulong bssAddress = 0)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
SourceAddress = sourceAddress;
|
|
|
|
BssAddress = bssAddress;
|
2018-04-22 04:21:49 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
BinaryReader reader = new BinaryReader(input);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
input.Seek(4, SeekOrigin.Begin);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
int mod0Offset = reader.ReadInt32();
|
|
|
|
int padding8 = reader.ReadInt32();
|
|
|
|
int paddingC = reader.ReadInt32();
|
|
|
|
int nroMagic = reader.ReadInt32();
|
|
|
|
int unknown14 = reader.ReadInt32();
|
|
|
|
int fileSize = reader.ReadInt32();
|
|
|
|
int unknown1C = reader.ReadInt32();
|
|
|
|
int textOffset = reader.ReadInt32();
|
|
|
|
int textSize = reader.ReadInt32();
|
|
|
|
int roOffset = reader.ReadInt32();
|
|
|
|
int roSize = reader.ReadInt32();
|
|
|
|
int dataOffset = reader.ReadInt32();
|
|
|
|
int dataSize = reader.ReadInt32();
|
|
|
|
int bssSize = reader.ReadInt32();
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Mod0Offset = mod0Offset;
|
|
|
|
TextOffset = textOffset;
|
|
|
|
RoOffset = roOffset;
|
|
|
|
DataOffset = dataOffset;
|
|
|
|
BssSize = bssSize;
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
byte[] Read(long position, int size)
|
2018-02-04 23:08:20 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
input.Seek(position, SeekOrigin.Begin);
|
2018-02-04 23:08:20 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
return reader.ReadBytes(size);
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
Text = Read(textOffset, textSize);
|
|
|
|
Ro = Read(roOffset, roSize);
|
|
|
|
Data = Read(dataOffset, dataSize);
|
2019-02-14 00:44:39 +00:00
|
|
|
|
|
|
|
FileSize = fileSize;
|
2018-02-04 23:08:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|