mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-30 15:51:33 -08:00
14 lines
292 B
C#
14 lines
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;
|
|
}
|
|
}
|
|
} |