blob: a4e2c7b93f0274786d006fc3eaf7262d52946569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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;
}
}
}
|