1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:37:35 +00:00

Kernel: Add an x86 include check+error in x86/PageDirectory.h

This commit is contained in:
James Mintram 2021-12-01 17:14:03 +00:00 committed by Brian Gianforcaro
parent 70a18a2271
commit 17fb2adf61
3 changed files with 11 additions and 1 deletions

View file

@ -6,11 +6,14 @@
#pragma once
#include <Kernel/Arch/x86/PageDirectory.h>
#include <Kernel/Multiboot.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/VirtualAddress.h>
namespace Kernel {
class PageTableEntry;
}
extern "C" PhysicalAddress start_of_prekernel_image;
extern "C" PhysicalAddress end_of_prekernel_image;
extern "C" size_t physical_to_virtual_offset;