mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-03-11 21:55:31 +00:00
14 lines
325 B
C#
14 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;
|
|
}
|
|
}
|
|
}
|