forked from MeloNX/MeloNX
17 lines
372 B
C#
17 lines
372 B
C#
using System;
|
|
|
|
namespace Ryujinx.Cpu.LightningJit
|
|
{
|
|
readonly ref struct CompiledFunction
|
|
{
|
|
public readonly ReadOnlySpan<byte> Code;
|
|
public readonly int GuestCodeLength;
|
|
|
|
public CompiledFunction(ReadOnlySpan<byte> code, int guestCodeLength)
|
|
{
|
|
Code = code;
|
|
GuestCodeLength = guestCodeLength;
|
|
}
|
|
}
|
|
}
|