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/ld.hpp12
1 files changed, 6 insertions, 6 deletions
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