mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-24 14:49:48 -06: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;
|
|
}
|
|
}
|
|
}
|