using Ryujinx.HLE.HOS.Kernel.Process;
using ARMeilleure.Memory;
namespace Ryujinx.HLE.HOS.Kernel.Common
{
static class KernelTransfer
public static bool UserToKernelInt32(Horizon system, ulong address, out int value)
KProcess currentProcess = system.Scheduler.GetCurrentProcess();
if (currentProcess.CpuMemory.IsMapped((long)address) &&
currentProcess.CpuMemory.IsMapped((long)address + 3))
value = currentProcess.CpuMemory.ReadInt32((long)address);
return true;
}
value = 0;
return false;
public static bool UserToKernelInt32Array(Horizon system, ulong address, int[] values)
for (int index = 0; index < values.Length; index++, address += 4)
values[index]= currentProcess.CpuMemory.ReadInt32((long)address);
else
public static bool UserToKernelString(Horizon system, ulong address, int size, out string value)
currentProcess.CpuMemory.IsMapped((long)address + size - 1))
value = MemoryHelper.ReadAsciiString(currentProcess.CpuMemory, (long)address, size);
value = null;
public static bool KernelToUserInt32(Horizon system, ulong address, int value)
currentProcess.CpuMemory.WriteInt32((long)address, value);
public static bool KernelToUserInt64(Horizon system, ulong address, long value)
currentProcess.CpuMemory.IsMapped((long)address + 7))
currentProcess.CpuMemory.WriteInt64((long)address, value);