Update files

This commit is contained in:
Alex
2022-10-10 23:29:39 +03:00
parent 32b44a50d4
commit 4b6683823f
39 changed files with 2133 additions and 26 deletions

24
include/power.hpp Normal file
View File

@ -0,0 +1,24 @@
#ifndef __FENNIX_KERNEL_POWER_H__
#define __FENNIX_KERNEL_POWER_H__
#include <types.h>
namespace Power
{
class Power
{
private:
// specific for 64 and 32 bit
void *acpi;
void *dsdt;
void *madt;
public:
void Reboot();
void Shutdown();
Power();
~Power();
};
}
#endif // !__FENNIX_KERNEL_POWER_H__