mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-15 01:37:03 +00:00
nuget: bump packages
* Gommon to 2.8.0.1 * Microsoft.NET.Test.Sdk to 18.0.0 * Newtonsoft.Json to 13.0.4 (reduces trim warnings by 56) * Ryujinx.LibHac to 0.21.0-alpha.126 * System group to 9.0.10 * UnicornEngine.Unicorn to 2.1.4-a40db6c
This commit is contained in:
parent
377805579b
commit
c8a6958ef3
4 changed files with 14 additions and 12 deletions
|
|
@ -9,6 +9,7 @@
|
|||
<PackageReference Include="Gommon" />
|
||||
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" />
|
||||
<PackageReference Include="MsgPack.Cli" />
|
||||
<PackageReference Include="Newtonsoft.Json" />
|
||||
<PackageReference Include="System.Management" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
|||
|
|
@ -269,17 +269,17 @@ namespace Ryujinx.Tests.Unicorn
|
|||
|
||||
public void MemoryMap(ulong address, ulong size, MemoryPermission permissions)
|
||||
{
|
||||
Uc.MemMap((long)address, (long)size, (int)permissions);
|
||||
Uc.MemMap((long)address, size, (int)permissions);
|
||||
}
|
||||
|
||||
public void MemoryUnmap(ulong address, ulong size)
|
||||
{
|
||||
Uc.MemUnmap((long)address, (long)size);
|
||||
Uc.MemUnmap((long)address, size);
|
||||
}
|
||||
|
||||
public void MemoryProtect(ulong address, ulong size, MemoryPermission permissions)
|
||||
{
|
||||
Uc.MemProtect((long)address, (long)size, (int)permissions);
|
||||
Uc.MemProtect((long)address, size, (int)permissions);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -282,17 +282,17 @@ namespace Ryujinx.Tests.Unicorn
|
|||
|
||||
public void MemoryMap(ulong address, ulong size, MemoryPermission permissions)
|
||||
{
|
||||
Uc.MemMap((long)address, (long)size, (int)permissions);
|
||||
Uc.MemMap((long)address, size, (int)permissions);
|
||||
}
|
||||
|
||||
public void MemoryUnmap(ulong address, ulong size)
|
||||
{
|
||||
Uc.MemUnmap((long)address, (long)size);
|
||||
Uc.MemUnmap((long)address, size);
|
||||
}
|
||||
|
||||
public void MemoryProtect(ulong address, ulong size, MemoryPermission permissions)
|
||||
{
|
||||
Uc.MemProtect((long)address, (long)size, (int)permissions);
|
||||
Uc.MemProtect((long)address, size, (int)permissions);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue