mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-18 21:26:29 +02:00
Fix more warnings
This commit is contained in:
parent
339d9ca83d
commit
689eadaece
5 changed files with 21 additions and 5 deletions
13
src/Ryujinx.Cpu/LightningJit/Cache/JitSupportDarwin.cs
Normal file
13
src/Ryujinx.Cpu/LightningJit/Cache/JitSupportDarwin.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue