mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-12 10:04:24 +00: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;
|
||
|
}
|
||
|
}
|
||
|
}
|