aboutsummaryrefslogtreecommitdiff
path: root/source/kernel
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2023-10-07 17:19:12 +0200
committerFelix Morgner <felix.morgner@ost.ch>2023-10-07 17:19:12 +0200
commitc5c80d7ed4aa8b3650b1a7185c433b2458f49717 (patch)
treec61c46ae9e105b86892132a8f2eeafa13a9a5d64 /source/kernel
parentff81b5438f280a59ca1825bfdf120d8f256bd154 (diff)
downloadteachos-c5c80d7ed4aa8b3650b1a7185c433b2458f49717.tar.xz
teachos-c5c80d7ed4aa8b3650b1a7185c433b2458f49717.zip
x86_64: move boot pointers to pointers namespace
Diffstat (limited to 'source/kernel')
-rw-r--r--source/kernel/arch/x86_64/src/vga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/kernel/arch/x86_64/src/vga.cpp b/source/kernel/arch/x86_64/src/vga.cpp
index d25eaa5..2ddd1d8 100644
--- a/source/kernel/arch/x86_64/src/vga.cpp
+++ b/source/kernel/arch/x86_64/src/vga.cpp
@@ -11,7 +11,7 @@ namespace teachos::kernel::vga
namespace
{
- auto constinit text_buffer_pointer = boot::asm_pointer{boot::vga_buffer_pointer};
+ auto constinit text_buffer_pointer = boot::asm_pointer{boot::pointers::vga_buffer_pointer};
auto write(char character, std::byte color) -> void
{