mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
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(
|
|
ulong BaseAddress,
|
|
ulong PagesCount,
|
|
MemoryState State,
|
|
MemoryPermission Permission,
|
|
MemoryAttribute Attribute)
|
|
{
|
|
this.BaseAddress = BaseAddress;
|
|
this.PagesCount = PagesCount;
|
|
this.State = State;
|
|
this.Attribute = Attribute;
|
|
this.Permission = Permission;
|
|
}
|
|
|
|
public KMemoryInfo GetInfo()
|
|
{
|
|
ulong Size = PagesCount * KMemoryManager.PageSize;
|
|
|
|
return new KMemoryInfo(
|
|
BaseAddress,
|
|
Size,
|
|
State,
|
|
Permission,
|
|
Attribute,
|
|
IpcRefCount,
|
|
DeviceRefCount);
|
|
}
|
|
}
|
|
} |