Refactor EFI memory mapping to support distinct mapping strategies
Všechny kontroly byly úspěšné
Builds / ExectOS (amd64, release) (push) Successful in 30s
Builds / ExectOS (amd64, debug) (push) Successful in 43s
Builds / ExectOS (i686, debug) (push) Successful in 39s
Builds / ExectOS (i686, release) (push) Successful in 29s

Tento commit je obsažen v:
2026-02-07 00:42:03 +01:00
rodič 80ea0b49d0
revize fa64507350
7 změnil soubory, kde provedl 71 přidání a 12 odebrání

Zobrazit soubor

@@ -10,6 +10,21 @@
#include <xtos.hh>
/**
* Determines the appropriate EFI memory mapping strategy for the AMD64 architecture.
*
* @return This routine returns TRUE, what results in an identity mapping.
*
* @since XT 1.0
*/
XTCDECL
BOOLEAN
Xtos::DetermineMappingStrategy()
{
/* Use an identity mapping strategy */
return TRUE;
}
/**
* Determines the appropriate paging level (PML) for the AMD64 architecture.
*