diff options
Diffstat (limited to 'arch/x86_64/src/memory')
| -rw-r--r-- | arch/x86_64/src/memory/higher_half_mapper.cpp | 10 | ||||
| -rw-r--r-- | arch/x86_64/src/memory/kernel_mapper.cpp | 8 | ||||
| -rw-r--r-- | arch/x86_64/src/memory/mmu.cpp | 6 | ||||
| -rw-r--r-- | arch/x86_64/src/memory/page_table.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/src/memory/region_allocator.cpp | 6 |
5 files changed, 17 insertions, 17 deletions
diff --git a/arch/x86_64/src/memory/higher_half_mapper.cpp b/arch/x86_64/src/memory/higher_half_mapper.cpp index b0d1995..75adb3c 100644 --- a/arch/x86_64/src/memory/higher_half_mapper.cpp +++ b/arch/x86_64/src/memory/higher_half_mapper.cpp @@ -1,10 +1,10 @@ -#include "arch/memory/higher_half_mapper.hpp" +#include <arch/memory/higher_half_mapper.hpp> -#include "arch/memory/page_table.hpp" -#include "arch/memory/page_utilities.hpp" +#include <arch/memory/page_table.hpp> +#include <arch/memory/page_utilities.hpp> -#include "kapi/memory.hpp" -#include "kapi/system.hpp" +#include <kapi/memory.hpp> +#include <kapi/system.hpp> #include <algorithm> #include <array> diff --git a/arch/x86_64/src/memory/kernel_mapper.cpp b/arch/x86_64/src/memory/kernel_mapper.cpp index 46d4dca..74272a0 100644 --- a/arch/x86_64/src/memory/kernel_mapper.cpp +++ b/arch/x86_64/src/memory/kernel_mapper.cpp @@ -1,9 +1,9 @@ -#include "arch/memory/kernel_mapper.hpp" +#include <arch/memory/kernel_mapper.hpp> -#include "arch/boot/ld.hpp" +#include <arch/boot/ld.hpp> -#include "kapi/memory.hpp" -#include "kapi/system.hpp" +#include <kapi/memory.hpp> +#include <kapi/system.hpp> #include <elf/format.hpp> #include <elf/section_header.hpp> diff --git a/arch/x86_64/src/memory/mmu.cpp b/arch/x86_64/src/memory/mmu.cpp index 6d185a0..2b53fa4 100644 --- a/arch/x86_64/src/memory/mmu.cpp +++ b/arch/x86_64/src/memory/mmu.cpp @@ -1,8 +1,8 @@ -#include "arch/memory/mmu.hpp" +#include <arch/memory/mmu.hpp> -#include "arch/cpu/registers.hpp" +#include <arch/cpu/registers.hpp> -#include "kapi/memory.hpp" +#include <kapi/memory.hpp> namespace arch::memory { diff --git a/arch/x86_64/src/memory/page_table.cpp b/arch/x86_64/src/memory/page_table.cpp index 26cdd29..2180420 100644 --- a/arch/x86_64/src/memory/page_table.cpp +++ b/arch/x86_64/src/memory/page_table.cpp @@ -1,6 +1,6 @@ -#include "arch/memory/page_table.hpp" +#include <arch/memory/page_table.hpp> -#include "kapi/memory.hpp" +#include <kapi/memory.hpp> #include <algorithm> #include <bit> diff --git a/arch/x86_64/src/memory/region_allocator.cpp b/arch/x86_64/src/memory/region_allocator.cpp index 4ee3ca4..4086a10 100644 --- a/arch/x86_64/src/memory/region_allocator.cpp +++ b/arch/x86_64/src/memory/region_allocator.cpp @@ -1,7 +1,7 @@ -#include "arch/memory/region_allocator.hpp" +#include <arch/memory/region_allocator.hpp> -#include "kapi/memory/address.hpp" -#include "kapi/memory/frame.hpp" +#include <kapi/memory/address.hpp> +#include <kapi/memory/frame.hpp> #include <multiboot2/information.hpp> |
