diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2023-10-07 17:19:12 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2023-10-07 17:19:12 +0200 |
| commit | c5c80d7ed4aa8b3650b1a7185c433b2458f49717 (patch) | |
| tree | c61c46ae9e105b86892132a8f2eeafa13a9a5d64 /source/kernel/arch/x86_64 | |
| parent | ff81b5438f280a59ca1825bfdf120d8f256bd154 (diff) | |
| download | teachos-c5c80d7ed4aa8b3650b1a7185c433b2458f49717.tar.xz teachos-c5c80d7ed4aa8b3650b1a7185c433b2458f49717.zip | |
x86_64: move boot pointers to pointers namespace
Diffstat (limited to 'source/kernel/arch/x86_64')
| -rw-r--r-- | source/kernel/arch/x86_64/src/vga.cpp | 2 |
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 { |
