diff options
Diffstat (limited to 'arch/x86_64')
| -rw-r--r-- | arch/x86_64/arch/boot/ld.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86_64/arch/boot/ld.hpp b/arch/x86_64/arch/boot/ld.hpp index 988723d..a8b83d6 100644 --- a/arch/x86_64/arch/boot/ld.hpp +++ b/arch/x86_64/arch/boot/ld.hpp @@ -27,33 +27,33 @@ namespace arch::boot //! This symbol marks the start of the kernel image in physical memory. //! //! @see _end_physical - extern std::byte _start_physical; + extern std::byte _start_physical; // NOLINT(readability-identifier-naming) //! The first byte after the loaded kernel image. //! //! This symbol marks the end of the kernel image in physical memory. //! //! @see _start_physical - extern std::byte _end_physical; + extern std::byte _end_physical; // NOLINT(readability-identifier-naming) //! The first byte of the loaded kernel image in the virtual address space. //! //! This symbol and marks the start of the kernel image in virtual memory. //! //! @see _end_virtual - extern std::byte _start_virtual; + extern std::byte _start_virtual; // NOLINT(readability-identifier-naming) //! The first byte after the loaded kernel image in the virtual address space. //! //! This symbol marks the end of the kernel image in virtual memory. //! //! @see _start_virtual - extern std::byte _end_virtual; + extern std::byte _end_virtual; // NOLINT(readability-identifier-naming) //! The first byte of the kernel's virtual address space. //! //! This symbol marks beginning of the kernel virtual address space. - extern std::byte TEACHOS_VMA; + extern std::byte TEACHOS_VMA; // NOLINT(readability-identifier-naming) } } // namespace arch::boot |
