1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-02-25 00:05:40 +00:00
Ryujinx/Ryujinx.HLE/HOS/Kernel/KPageNode.cs

14 lines
282 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Kernel
{
struct KPageNode
{
public ulong Address;
public ulong PagesCount;
2018-12-01 14:01:59 -06:00
public KPageNode(ulong address, ulong pagesCount)
{
2018-12-01 14:24:37 -06:00
Address = address;
PagesCount = pagesCount;
}
}
}