mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-23 02:40:33 +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;
|
|
}
|
|
}
|
|
} |