diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-12-12 10:54:22 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-12-12 10:54:22 +0100 |
| commit | 6fdfe22f75c7202eee84b9b89f6abd5dbc60fedc (patch) | |
| tree | caf26a2d2b05ada004a7a7e99dc69a3728e89bc5 | |
| parent | 822b17b852cdc8933881132dd7b862ee74117973 (diff) | |
| download | teachos-6fdfe22f75c7202eee84b9b89f6abd5dbc60fedc.tar.xz teachos-6fdfe22f75c7202eee84b9b89f6abd5dbc60fedc.zip | |
x86_64/cpu: flatten file hierarchy
| -rw-r--r-- | arch/x86_64/include/x86_64/cpu/control_registers.hpp (renamed from arch/x86_64/include/x86_64/cpu/impl/control_registers.hpp) | 0 | ||||
| -rw-r--r-- | arch/x86_64/include/x86_64/cpu/model_specific_register.hpp (renamed from arch/x86_64/include/x86_64/cpu/impl/model_specific_register.hpp) | 0 | ||||
| -rw-r--r-- | arch/x86_64/include/x86_64/cpu/registers.hpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/src/kapi/memory.cpp | 1 |
4 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86_64/include/x86_64/cpu/impl/control_registers.hpp b/arch/x86_64/include/x86_64/cpu/control_registers.hpp index 1f8c690..1f8c690 100644 --- a/arch/x86_64/include/x86_64/cpu/impl/control_registers.hpp +++ b/arch/x86_64/include/x86_64/cpu/control_registers.hpp diff --git a/arch/x86_64/include/x86_64/cpu/impl/model_specific_register.hpp b/arch/x86_64/include/x86_64/cpu/model_specific_register.hpp index 080b280..080b280 100644 --- a/arch/x86_64/include/x86_64/cpu/impl/model_specific_register.hpp +++ b/arch/x86_64/include/x86_64/cpu/model_specific_register.hpp diff --git a/arch/x86_64/include/x86_64/cpu/registers.hpp b/arch/x86_64/include/x86_64/cpu/registers.hpp index 97cba19..cb56270 100644 --- a/arch/x86_64/include/x86_64/cpu/registers.hpp +++ b/arch/x86_64/include/x86_64/cpu/registers.hpp @@ -1,7 +1,7 @@ #ifndef TEACHOS_X86_64_CPU_REGISTERS_HPP #define TEACHOS_X86_64_CPU_REGISTERS_HPP -#include "x86_64/cpu/impl/control_registers.hpp" // IWYU pragma: export -#include "x86_64/cpu/impl/model_specific_register.hpp" // IWYU pragma: export +#include "x86_64/cpu/control_registers.hpp" // IWYU pragma: export +#include "x86_64/cpu/model_specific_register.hpp" // IWYU pragma: export #endif
\ No newline at end of file diff --git a/arch/x86_64/src/kapi/memory.cpp b/arch/x86_64/src/kapi/memory.cpp index cd0bd77..a20483c 100644 --- a/arch/x86_64/src/kapi/memory.cpp +++ b/arch/x86_64/src/kapi/memory.cpp @@ -5,7 +5,6 @@ #include "x86_64/boot/boot.hpp" #include "x86_64/boot/ld.hpp" -#include "x86_64/cpu/impl/control_registers.hpp" #include "x86_64/cpu/registers.hpp" #include "x86_64/memory/buffered_allocator.hpp" #include "x86_64/memory/kernel_mapper.hpp" |
