aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/include
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/include')
-rw-r--r--arch/x86_64/include/x86_64/boot/boot.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86_64/include/x86_64/boot/boot.hpp b/arch/x86_64/include/x86_64/boot/boot.hpp
index 066e49e..1887e73 100644
--- a/arch/x86_64/include/x86_64/boot/boot.hpp
+++ b/arch/x86_64/include/x86_64/boot/boot.hpp
@@ -44,21 +44,21 @@
#else
-#include "arch/asm_pointer.hpp"
-
#include <multiboot2/information.hpp>
+#include <kstd/asm_ptr>
+
extern "C"
{
/**
* @brief A pointer to the multiboot 2 information structure provided by the boot loader.
*/
- extern teachos::arch::asm_pointer<multiboot2::information_view> multiboot_information_pointer;
+ extern kstd::asm_ptr<multiboot2::information_view> multiboot_information_pointer;
/**
* @brief A pointer to the VGA text mode buffer.
*/
- extern teachos::arch::asm_pointer<std::pair<char, std::byte>> vga_buffer_pointer;
+ extern kstd::asm_ptr<std::pair<char, std::byte>> vga_buffer_pointer;
}
#endif