mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
16 lines
372 B
C#
16 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;
|
|
}
|
|
}
|
|
}
|