mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-03 01:32:01 +00:00
14 lines
No EOL
292 B
C#
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;
|
|
}
|
|
}
|
|
} |