Nigel
490529099b
- The FAT command is no longer available - At Startup the FileSystem initialise funciton is called, it should execute the same code as the FAT command did. - ACPI::initialise is commented out because it causes a Exception
15 lines
318 B
C++
15 lines
318 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((RSDPTR*)((uint32_t)rsd_ptr + 0xC00000000));
|
|
} |