This commit is contained in:
Matthijs ter Woord 2016-06-16 18:27:59 -04:00
commit 050f4e4a11
2 changed files with 7 additions and 0 deletions

Binary file not shown.

View file

@ -7,6 +7,13 @@ using Native = System.UInt32;
namespace Cosmos.Core.Memory.Test {
unsafe static public class RAT {
// RAT: RAM Allocation Table
//
// A byte table which defines the code which owns the page.
// Owners can further subdivide table types on their own and RAT
// code must not assume anything about contents of pages other
// than who owns them.
static public class PageType {
public const byte Empty = 0;