mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
34 lines
No EOL
620 B
C#
34 lines
No EOL
620 B
C#
using System;
|
|
|
|
namespace Cosmos.Kernel
|
|
{
|
|
public class PagingUtility
|
|
{
|
|
public static void EnablePaging()
|
|
{
|
|
//Plugged
|
|
}
|
|
public static void DisablePaging()
|
|
{
|
|
//Plugged
|
|
}
|
|
|
|
public static void EnablePSE()
|
|
{
|
|
//Plugged
|
|
}
|
|
public static void DisablePSE()
|
|
{
|
|
//Plugged
|
|
}
|
|
|
|
public static void SetPageDirectory(uint Address)
|
|
{
|
|
//Plugged
|
|
}
|
|
public static void InvalidatePage(uint Address)
|
|
{
|
|
//Plugged
|
|
}
|
|
}
|
|
} |