summaryrefslogtreecommitdiffhomepage
path: root/NewKernel/NewBoot/BootKit/Platform.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-08 12:32:41 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-05-08 12:32:41 +0200
commit09dd11ddf800898c00ecb04a65fb5cd10fb481fa (patch)
treeeda0b4e23d6a71da7de3a78f0bb76ec3201dd2f9 /NewKernel/NewBoot/BootKit/Platform.hxx
parentca83108fd138cc0398f900e6a6c0a53ad51aee31 (diff)
MHR-23: :boom: changes, reworked project tree.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'NewKernel/NewBoot/BootKit/Platform.hxx')
-rw-r--r--NewKernel/NewBoot/BootKit/Platform.hxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/NewKernel/NewBoot/BootKit/Platform.hxx b/NewKernel/NewBoot/BootKit/Platform.hxx
new file mode 100644
index 00000000..997a79db
--- /dev/null
+++ b/NewKernel/NewBoot/BootKit/Platform.hxx
@@ -0,0 +1,22 @@
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+------------------------------------------- */
+
+#pragma once
+
+/**
+ @file Processor.hxx
+ @brief Processor specific code.
+*/
+
+#ifdef __x86_64__
+
+extern "C" void rt_halt();
+extern "C" void rt_cli();
+extern "C" void rt_sti();
+extern "C" void rt_cld();
+extern "C" void rt_std();
+
+#endif /* ifdef __x86_64__ */