StuBS
|
#include <data.h>
Public Member Functions | |
void * | getStartAddress () const |
Get start of this memory area. | |
void * | getEndAddress () const |
Get end of this memory area. | |
bool | isAvailable () const |
Is the memory marked as usable. | |
Memory * | getNext () const |
Get the next memory area. | |
Private Types | |
enum | Type : uint32_t { AVAILABLE = 1 , RESERVED = 2 , ACPI = 3 , NVS = 4 , BADRAM = 5 } |
Usage Type. More... | |
Private Attributes | |
uint32_t | size |
Size of this entry (can exceed size of the class, rest will be padding bits) | |
uint64_t | addr |
Begin of memory area. | |
uint64_t | len |
length of the memory area | |
Memory Map.
The boot loader queries the BIOS for a memory map and stores its result in (something like) a linked list. However, this list may not be complete, can have contradictory entries and does not take the location of your kernel or any boot modules into account. (Anyways, it is still the best memory map you will have in StuBS...)
MULTIBOOT_MEMORY_INFO
flag in the multiboot header (see boot/multiboot/config.inc
)!
|
private |
void * Multiboot::Memory::getEndAddress | ( | ) | const |
Get end of this memory area.
Memory * Multiboot::Memory::getNext | ( | ) | const |
Get the next memory area.
void * Multiboot::Memory::getStartAddress | ( | ) | const |
Get start of this memory area.
bool Multiboot::Memory::isAvailable | ( | ) | const |
Is the memory marked as usable.
true
if available, false
if not usable.