diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-11 14:37:04 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-11 14:37:04 -0400 |
commit | 42a2bdaecaee627247689b3f4ff2828fe3c8dc97 (patch) | |
tree | 17e59594b1979912401eecb05891234e028e8869 /arch/x86_64/memory | |
parent | 7f350e7ee1c2c38e5ac0b6c22c17388f6c78f0b5 (diff) | |
download | jove-kernel-42a2bdaecaee627247689b3f4ff2828fe3c8dc97.tar.gz jove-kernel-42a2bdaecaee627247689b3f4ff2828fe3c8dc97.tar.bz2 jove-kernel-42a2bdaecaee627247689b3f4ff2828fe3c8dc97.zip |
load init from ELF executable
Diffstat (limited to 'arch/x86_64/memory')
-rw-r--r-- | arch/x86_64/memory/pml4.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86_64/memory/pml4.c b/arch/x86_64/memory/pml4.c index fcfc897..b22bcfb 100644 --- a/arch/x86_64/memory/pml4.c +++ b/arch/x86_64/memory/pml4.c @@ -1,8 +1,10 @@ #include "arch/x86_64/page.h" +#include "arch/x86_64/processor.h" #include "device/processor.h" #include "memory.h" #include "boot.h" #include "object.h" +#include "init.h" #include "string.h" #include "jove.h" #include "error.h" |