Abstract base mapping address retrieval
All checks were successful
Builds / ExectOS (amd64, debug) (push) Successful in 23s
Builds / ExectOS (i686, release) (push) Successful in 26s
Builds / ExectOS (i686, debug) (push) Successful in 38s
Builds / ExectOS (amd64, release) (push) Successful in 39s

This commit is contained in:
2026-01-12 23:03:13 +01:00
parent 15edd98242
commit 11f7c25713
4 changed files with 33 additions and 4 deletions

View File

@@ -156,6 +156,20 @@ Xtos::EnablePaging(IN PXTBL_PAGE_MAPPING PageMap)
return STATUS_EFI_SUCCESS;
}
/**
* Returns the base address of the memory mapping.
*
* @return This routine returns the base address of the memory mapping.
*
* @since XT 1.0
*/
XTCDECL
ULONG_PTR
Xtos::GetBaseMappingAddress(VOID)
{
return KSEG0_BASE;
}
/**
* Maps the page table for hardware layer addess space.
*