Ryujinx/Ryujinx.HLE/HOS/Kernel/KMemoryBlock.cs

43 lines
1.2 KiB
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel
{
class KMemoryBlock
{
public ulong BaseAddress { get; set; }
public ulong PagesCount { get; set; }
public MemoryState State { get; set; }
public MemoryPermission Permission { get; set; }
public MemoryAttribute Attribute { get; set; }
public int IpcRefCount { get; set; }
public int DeviceRefCount { get; set; }
public KMemoryBlock(
2018-12-01 21:01:59 +01:00
ulong baseAddress,
ulong pagesCount,
MemoryState state,
MemoryPermission permission,
MemoryAttribute attribute)
{
2018-12-01 21:24:37 +01:00
BaseAddress = baseAddress;
PagesCount = pagesCount;
State = state;
Attribute = attribute;
Permission = permission;
}
public KMemoryInfo GetInfo()
{
2018-12-01 21:01:59 +01:00
ulong size = PagesCount * KMemoryManager.PageSize;
return new KMemoryInfo(
BaseAddress,
2018-12-01 21:01:59 +01:00
size,
State,
Permission,
Attribute,
IpcRefCount,
DeviceRefCount);
}
}
}