mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Correct type of executable sizes (#1802)
This commit is contained in:
parent
dc129ea1bc
commit
2d35d6052a
9 changed files with 95 additions and 77 deletions
|
@ -4,15 +4,15 @@ namespace Ryujinx.HLE.Loaders.Executables
|
|||
{
|
||||
interface IExecutable
|
||||
{
|
||||
byte[] Program { get; }
|
||||
byte[] Program { get; }
|
||||
Span<byte> Text { get; }
|
||||
Span<byte> Ro { get; }
|
||||
Span<byte> Data { get; }
|
||||
|
||||
int TextOffset { get; }
|
||||
int RoOffset { get; }
|
||||
int DataOffset { get; }
|
||||
int BssOffset { get; }
|
||||
int BssSize { get; }
|
||||
uint TextOffset { get; }
|
||||
uint RoOffset { get; }
|
||||
uint DataOffset { get; }
|
||||
uint BssOffset { get; }
|
||||
uint BssSize { get; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue