Add get_memory_map and copy_mem to boot_services

This commit is contained in:
Justin C. Miller
2020-05-06 00:18:33 -07:00
parent 6bd8448387
commit 9064567e4a
2 changed files with 17 additions and 6 deletions

View File

@@ -84,6 +84,15 @@ enum class allocate_type : uint32_t
address
};
struct memory_descriptor
{
memory_type type;
uintptr_t physical_start;
uintptr_t virtual_start;
uint64_t number_of_pages;
uint64_t attribute;
};
//
// Event handling defitions