Commit e51226b8 authored by Andrew Boie's avatar Andrew Boie Committed by Anas Nashif
Browse files

tests: x86: pagetables: use new Kconfigs



Don't use old SRAM macros for mapped virtual memory bounds.

Signed-off-by: default avatarAndrew Boie <andrew.p.boie@intel.com>
parent a29b31d8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -16,8 +16,8 @@
#include <x86_mmu.h>
#include <linker/linker-defs.h>

#define VM_BASE		((uint8_t *)CONFIG_SRAM_BASE_ADDRESS)
#define VM_LIMIT	(VM_BASE + KB((size_t)CONFIG_SRAM_SIZE))
#define VM_BASE		((uint8_t *)CONFIG_KERNEL_VM_BASE)
#define VM_LIMIT	(VM_BASE + CONFIG_KERNEL_RAM_SIZE)

#ifdef CONFIG_X86_64
#define PT_LEVEL	3