1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-03 01:32:01 +00:00
Ryujinx/Ryujinx.HLE/HOS/Kernel/KPageNode.cs
2018-12-01 14:03:56 -06:00

14 lines
No EOL
292 B
C#

namespace Ryujinx.HLE.HOS.Kernel
{
struct KPageNode
{
public ulong Address;
public ulong PagesCount;
public KPageNode(ulong address, ulong pagesCount)
{
this.Address = address;
this.PagesCount = pagesCount;
}
}
}