diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-07-23 14:15:09 +0000 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-07-23 14:15:09 +0000 |
| commit | bb685cca3a537f0df4205050a9c52b411dee95c6 (patch) | |
| tree | 4190c6ecd6c4362974ed7594e587a95234a1f686 /arch/x86_64/include | |
| parent | 05df795a860eaedf43602beadc2d1637bd2cdd14 (diff) | |
| download | teachos-bb685cca3a537f0df4205050a9c52b411dee95c6.tar.xz teachos-bb685cca3a537f0df4205050a9c52b411dee95c6.zip | |
x86_64: rename _*_linear to _*_physical
Diffstat (limited to 'arch/x86_64/include')
| -rw-r--r-- | arch/x86_64/include/x86_64/boot/ld.hpp | 12 |
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 |
