using Ryujinx.Cpu;
using Ryujinx.HLE.HOS.Kernel.Process;
using System;
namespace Ryujinx.HLE.HOS.Kernel.Common
{
static class KernelTransfer
public static bool UserToKernelInt32(KernelContext context, ulong address, out int value)
KProcess currentProcess = KernelStatic.GetCurrentProcess();
if (currentProcess.CpuMemory.IsMapped(address) &&
currentProcess.CpuMemory.IsMapped(address + 3))
value = currentProcess.CpuMemory.Read<int>(address);
return true;
}
value = 0;
return false;
public static bool UserToKernelInt32Array(KernelContext context, ulong address, Span<int> values)
for (int index = 0; index < values.Length; index++, address += 4)
values[index]= currentProcess.CpuMemory.Read<int>(address);
else
public static bool UserToKernelString(KernelContext context, ulong address, int size, out string value)
currentProcess.CpuMemory.IsMapped(address + (ulong)size - 1))
value = MemoryHelper.ReadAsciiString(currentProcess.CpuMemory, address, size);
value = null;
public static bool KernelToUserInt32(KernelContext context, ulong address, int value)
currentProcess.CpuMemory.Write(address, value);
public static bool KernelToUserInt64(KernelContext context, ulong address, long value)
currentProcess.CpuMemory.IsMapped(address + 7))