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
|
@ -17,16 +17,16 @@ namespace Ryujinx.HLE.Loaders.Elf
|
|||
Binding == ElfSymbolBinding.StbWeak;
|
||||
|
||||
public int ShIdx { get; private set; }
|
||||
public long Value { get; private set; }
|
||||
public long Size { get; private set; }
|
||||
public ulong Value { get; private set; }
|
||||
public ulong Size { get; private set; }
|
||||
|
||||
public ElfSymbol(
|
||||
string name,
|
||||
int info,
|
||||
int other,
|
||||
int shIdx,
|
||||
long value,
|
||||
long size)
|
||||
ulong value,
|
||||
ulong size)
|
||||
{
|
||||
Name = name;
|
||||
Type = (ElfSymbolType)(info & 0xf);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue