Cosmos/source/Cosmos.HAL/Power.cs
2017-06-19 22:56:34 +02:00

25 lines
No EOL
465 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Cosmos.Core;
namespace Cosmos.HAL
{
public class Power
{
public static void CPUReboot()
{
Core.Global.CPU.Reboot();
}
public static void Reboot()
{
ACPI.Reboot();
}
public static void Shutdown()
{
ACPI.Shutdown();
}
}
}