summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/HALKit/POWER/HalStartSequence.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/HALKit/POWER/HalStartSequence.s')
-rw-r--r--src/kernel/HALKit/POWER/HalStartSequence.s14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/kernel/HALKit/POWER/HalStartSequence.s b/src/kernel/HALKit/POWER/HalStartSequence.s
new file mode 100644
index 00000000..194e220e
--- /dev/null
+++ b/src/kernel/HALKit/POWER/HalStartSequence.s
@@ -0,0 +1,14 @@
+/* ========================================
+
+ Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
+
+======================================== */
+
+.globl __ImageStart
+.extern hal_init_platform
+.align 4
+.text
+
+__ImageStart:
+ bl hal_init_platform
+ blr