2024-01-20 11:11:28 -03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Cpu.LightningJit
|
|
|
|
|
{
|
|
|
|
|
class TranslatedFunction
|
|
|
|
|
{
|
2024-10-26 08:46:41 -05:00
|
|
|
public nint FuncPointer { get; }
|
2024-01-20 11:11:28 -03:00
|
|
|
public ulong GuestSize { get; }
|
|
|
|
|
|
2024-10-26 08:46:41 -05:00
|
|
|
public TranslatedFunction(nint funcPointer, ulong guestSize)
|
2024-01-20 11:11:28 -03:00
|
|
|
{
|
|
|
|
|
FuncPointer = funcPointer;
|
|
|
|
|
GuestSize = guestSize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|