mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 10:39:07 +00:00
[NTOS:MM:X64] On x64 reserve the address range between FFFF800000000000 and FFFFF68000000000 in MiInitSystemMemoryAreas()
This commit is contained in:
parent
a8ba58fbb0
commit
a5d47ff72b
1 changed files with 5 additions and 0 deletions
|
@ -70,6 +70,11 @@ MiInitSystemMemoryAreas(VOID)
|
|||
// Create all the static memory areas.
|
||||
//
|
||||
|
||||
#ifdef _M_AMD64
|
||||
// Reserved range FFFF800000000000 - FFFFF68000000000
|
||||
MiCreateArm3StaticMemoryArea((PVOID)MI_REAL_SYSTEM_RANGE_START, PTE_BASE - MI_REAL_SYSTEM_RANGE_START, FALSE);
|
||||
#endif /* _M_AMD64 */
|
||||
|
||||
// The loader mappings. The only Executable area.
|
||||
MiCreateArm3StaticMemoryArea((PVOID)KSEG0_BASE, MmBootImageSize, TRUE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue