17 lines
344 B
C#
17 lines
344 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace Ryujinx.Cpu.LightningJit
|
||
|
|
{
|
||
|
|
class TranslatedFunction
|
||
|
|
{
|
||
|
|
public IntPtr FuncPointer { get; }
|
||
|
|
public ulong GuestSize { get; }
|
||
|
|
|
||
|
|
public TranslatedFunction(IntPtr funcPointer, ulong guestSize)
|
||
|
|
{
|
||
|
|
FuncPointer = funcPointer;
|
||
|
|
GuestSize = guestSize;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|