From 90a0c8811e28df1e1d7d62b832fdbb1eed6e3393 Mon Sep 17 00:00:00 2001 From: AlmuHS Date: Tue, 28 May 2019 20:27:51 +0200 Subject: fix: repaired bad addressing --- i386/i386/cpuboot.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/i386/i386/cpuboot.S b/i386/i386/cpuboot.S index 4673bba7..a101f2f4 100644 --- a/i386/i386/cpuboot.S +++ b/i386/i386/cpuboot.S @@ -92,12 +92,12 @@ _apboot: #if PAE //set_cr3((unsigned)_kvtophys(kernel_pmap->pdpbase)); - movl pdpbase_addr, %eax + movl (pdpbase_addr), %eax movl %eax, %cr3 #ifndef MACH_HYP //if (!CPU_HAS_FEATURE(CPU_FEATURE_PAE)) - movl cpu_features, %eax + movl (cpu_features), %eax test $(1<