mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-24 11:32:23 -05:00
15 lines
325 B
C#
15 lines
325 B
C#
namespace Ryujinx.Cpu.LightningJit
|
|
{
|
|
class TranslatedFunction
|
|
{
|
|
public nint FuncPointer { get; }
|
|
public ulong GuestSize { get; }
|
|
|
|
public TranslatedFunction(nint funcPointer, ulong guestSize)
|
|
{
|
|
FuncPointer = funcPointer;
|
|
GuestSize = guestSize;
|
|
}
|
|
}
|
|
}
|