Nigel
520104a43a
- Updated gdt assembly - Updated Interrupt service request handlers - Improved virtual memory manager - NOTE: we're dependent on identity mappings for the heap to work
13 lines
273 B
C++
13 lines
273 B
C++
#pragma once
|
|
#include "rsdp.h"
|
|
class ACPI {
|
|
public:
|
|
static void initialize();
|
|
|
|
// In the future ACPI might start
|
|
// doing more systems initialization
|
|
|
|
private:
|
|
static RSDPTR* rsd_ptr;
|
|
static RSDT* rsd_table;
|
|
}; |