From bb685cca3a537f0df4205050a9c52b411dee95c6 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Wed, 23 Jul 2025 14:15:09 +0000 Subject: x86_64: rename _*_linear to _*_physical --- arch/x86_64/include/x86_64/boot/ld.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'arch/x86_64/include') diff --git a/arch/x86_64/include/x86_64/boot/ld.hpp b/arch/x86_64/include/x86_64/boot/ld.hpp index 6051dd7..51eb23b 100644 --- a/arch/x86_64/include/x86_64/boot/ld.hpp +++ b/arch/x86_64/include/x86_64/boot/ld.hpp @@ -20,28 +20,28 @@ namespace teachos::x86_64::boot { /** - * @var _start_linear + * @var _start_physical * @brief The first byte of the loaded kernel image. * * @details * This symbols is defined in the kernel linker script and marks the start of the kernel image in physical memory. * To use this symbol for its intended purpose, the address of it shall be taken. * - * @see _end_linear + * @see _end_physical */ - extern "C" std::byte _start_linear; + extern "C" std::byte _start_physical; /** - * @var _end_linear + * @var _end_physical * @brief The first byte after the loaded kernel image. * * @details * This symbols is defined in the kernel linker script and marks the end of the kernel image in physical memory. * To use this symbol for its intended purpose, the address of it shall be taken. * - * @see _start_linear + * @see _start_physical */ - extern "C" std::byte _end_linear; + extern "C" std::byte _end_physical; } // namespace teachos::x86_64::boot #endif -- cgit v1.2.3