using System; namespace Ryujinx.Cpu.LightningJit { readonly ref struct CompiledFunction { public readonly ReadOnlySpan Code; public readonly int GuestCodeLength; public CompiledFunction(ReadOnlySpan code, int guestCodeLength) { Code = code; GuestCodeLength = guestCodeLength; } } }