aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/src/kernel')
-rw-r--r--arch/x86_64/src/kernel/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/src/kernel/main.cpp b/arch/x86_64/src/kernel/main.cpp
index c0d4aed..09fc2a2 100644
--- a/arch/x86_64/src/kernel/main.cpp
+++ b/arch/x86_64/src/kernel/main.cpp
@@ -1,7 +1,7 @@
#include "arch/kernel/main.hpp"
#include "arch/exception_handling/assert.hpp"
-#include "arch/memory/frame_allocator.hpp"
+#include "arch/memory/allocator/area_frame_allocator.hpp"
#include "arch/memory/multiboot/reader.hpp"
#include "arch/video/vga/text.hpp"
@@ -18,7 +18,7 @@ namespace teachos::arch::kernel
text::write("TeachOS is starting up...", text::common_attributes::green_on_black);
auto memory_information = memory::multiboot::read_multiboot2();
- auto allocator = memory::area_frame_allocator(memory_information);
+ memory::allocator::area_frame_allocator allocator(memory_information);
auto last_allocated = allocator.allocate_frame();
auto allocated = last_allocated;