1
0
forked from MeloNX/MeloNX
MeloNX/src/Ryujinx.Cpu/LightningJit/Cache/JitSupportDarwin.cs
2023-12-24 13:13:13 -03:00

14 lines
386 B
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
namespace Ryujinx.Cpu.LightningJit.Cache
{
[SupportedOSPlatform("macos")]
static partial class JitSupportDarwin
{
[LibraryImport("libarmeilleure-jitsupport", EntryPoint = "armeilleure_jit_memcpy")]
public static partial void Copy(IntPtr dst, IntPtr src, ulong n);
}
}