From 227cc48261bd53ccf21edf00067ee64df523fbf6 Mon Sep 17 00:00:00 2001 From: daef Date: Fri, 17 Mar 2023 15:30:37 +0100 Subject: [PATCH] fix typo --- arch/x86/64/source/init_boottime_pagetables.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/64/source/init_boottime_pagetables.cpp b/arch/x86/64/source/init_boottime_pagetables.cpp index b7c716efe..561d0a597 100644 --- a/arch/x86/64/source/init_boottime_pagetables.cpp +++ b/arch/x86/64/source/init_boottime_pagetables.cpp @@ -30,7 +30,7 @@ extern "C" void initialisePaging() // * 8000 0000 0 to * FFFF FFFF F // binary: 100 000 000 means pml4i >= 256 - // map the first and the last PM4L entry and one for the identity mapping + // map the first and the last PML4 entry and one for the identity mapping pml4[0].page_ppn = (uint64)pdpt1 / PAGE_SIZE; pml4[0].writeable = 1; pml4[0].present = 1;