aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/arch/cpu/initialization.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/arch/cpu/initialization.hpp')
-rw-r--r--arch/x86_64/arch/cpu/initialization.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86_64/arch/cpu/initialization.hpp b/arch/x86_64/arch/cpu/initialization.hpp
new file mode 100644
index 0000000..564c544
--- /dev/null
+++ b/arch/x86_64/arch/cpu/initialization.hpp
@@ -0,0 +1,12 @@
+#ifndef TEACHOS_ARCH_X86_64_CPU_INITIALIZATION_HPP
+#define TEACHOS_ARCH_X86_64_CPU_INITIALIZATION_HPP
+
+namespace arch::cpu
+{
+ auto initialize_descriptors() -> void;
+
+ auto initialize_legacy_interrupts() -> void;
+
+} // namespace arch::cpu
+
+#endif