diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-06-19 17:56:55 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-06-19 17:57:16 +0200 |
| commit | 19d0857d84cbc0267a8b222368e143bdcdaaf9a7 (patch) | |
| tree | 8d8a274003cbe6837a5f565e97a810d0774f0624 /Kernel/Sources/PageManager.cxx | |
| parent | 720e24cea004356da037648b92fd7eb02f3c74a8 (diff) | |
ARM64: Got into the linking stage, writing missing drivers in HAL now.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Kernel/Sources/PageManager.cxx')
| -rw-r--r-- | Kernel/Sources/PageManager.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Kernel/Sources/PageManager.cxx b/Kernel/Sources/PageManager.cxx index 118fbe53..331be178 100644 --- a/Kernel/Sources/PageManager.cxx +++ b/Kernel/Sources/PageManager.cxx @@ -7,8 +7,10 @@ #include <KernelKit/DebugOutput.hpp> #include <NewKit/PageManager.hpp> -#ifdef __x86_64__ +#ifdef __NEWOS_AMD64__ #include <HALKit/AMD64/HalPageAlloc.hpp> +#elif defined(__NEWOS_ARM64__) +#include <HALKit/ARM64/Processor.hxx> #endif // ifdef __x86_64__ //! null deref will throw (Page Zero detected, aborting app!) |
