MeloNX/src/Ryujinx.Cpu/LightningJit/CompiledFunction.cs
2024-01-04 18:00:30 -03:00

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;
}
}
}