Add 32 bits support to HleProcessDebugger (#859)
Co-authored-by: riperiperi <rhy3756547@hotmail.com>
This commit is contained in:
parent
78f6b1d396
commit
9c8d48edff
4 changed files with 116 additions and 37 deletions
12
Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs
Normal file
12
Ryujinx.HLE/Loaders/Elf/ElfSymbol32.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
namespace Ryujinx.HLE.Loaders.Elf
|
||||
{
|
||||
struct ElfSymbol32
|
||||
{
|
||||
public uint NameOffset;
|
||||
public uint ValueAddress;
|
||||
public uint Size;
|
||||
public char Info;
|
||||
public char Other;
|
||||
public ushort SectionIndex;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue