aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/include
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2025-07-23 13:21:32 +0000
committerFelix Morgner <felix.morgner@ost.ch>2025-07-23 13:21:32 +0000
commite97e86d169849527190cef1913efdd247e6f68df (patch)
treec46f0fe0eeaf50354f7a1c65304faae0b670a1b5 /arch/x86_64/include
parent3a407e83b2dbd15936569ff90e4433078ea1cbaf (diff)
downloadteachos-e97e86d169849527190cef1913efdd247e6f68df.tar.xz
teachos-e97e86d169849527190cef1913efdd247e6f68df.zip
libs: move asm_ptr to kstd
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