diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2023-10-12 15:14:04 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2023-10-12 15:21:06 +0200 |
| commit | 4e62a23e3d9d071e0ed7c7a75421c41314c3b90a (patch) | |
| tree | 1ba13bbfbb24182fe9fa822c978b2d9a478ab5b1 /source/arch/x86_64 | |
| parent | 0db25b0e76151c43a235ae627cf318b69745c2fb (diff) | |
| download | teachos-4e62a23e3d9d071e0ed7c7a75421c41314c3b90a.tar.xz teachos-4e62a23e3d9d071e0ed7c7a75421c41314c3b90a.zip | |
memory: fix namespace of asm_pointer
Diffstat (limited to 'source/arch/x86_64')
| -rw-r--r-- | source/arch/x86_64/src/video/vga/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/arch/x86_64/src/video/vga/text.cpp b/source/arch/x86_64/src/video/vga/text.cpp index 8259c5a..f1e7412 100644 --- a/source/arch/x86_64/src/video/vga/text.cpp +++ b/source/arch/x86_64/src/video/vga/text.cpp @@ -16,7 +16,7 @@ namespace teachos::arch::video::vga::text auto constexpr default_text_buffer_address = 0xb8000; extern "C" std::pair<char, attribute> * vga_buffer_pointer; - auto constinit text_buffer = teachos::boot::asm_pointer{vga_buffer_pointer}; + auto constinit text_buffer = teachos::memory::asm_pointer{vga_buffer_pointer}; auto write(char code_point, attribute attribute) -> void { |
