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
14 lines
282 B
C++
14 lines
282 B
C++
#include "acpi.h"
|
|
RSDPTR* ACPI::rsd_ptr;
|
|
RSDT* ACPI::rsd_table;
|
|
|
|
|
|
|
|
void ACPI::initialize(){
|
|
|
|
// Find the Root System Description Pointer
|
|
ACPI::rsd_ptr = FindRSD();
|
|
printRSD(rsd_ptr);
|
|
// Get the Root System Description Table
|
|
ACPI::rsd_table = getRSDT(rsd_ptr);
|
|
} |